gpt4 book ai didi

linux - 在 linux/unix 中附加到文件而不是覆盖

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:51:49 24 4
gpt4 key购买 nike

我正在编写一个脚本来将数据写入文件。脚本是

for i in {1..10..2}
do
echo $i > tot.txt
done

但每次 tot.txt 都会被覆盖。如何在不覆盖的情况下追加?谢谢

最佳答案

您需要在done 之后使用重定向一次:

for i in {1..10..2}
do
echo $i
done > tot.txt

cat tot.txt
1
3
5
7
9

PS:如果你在tot.txt里面已经有一些内容了那么你可以使用 >> tot.txtdone 之后.

关于linux - 在 linux/unix 中附加到文件而不是覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30488206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com