> file.txt ...但新行会在现有行之前添加? 最佳答案 分两步: co-6ren">
gpt4 book ai didi

shell - echo >> 样式追加,但到文件的开头

转载 作者:行者123 更新时间:2023-12-04 09:41:42 24 4
gpt4 key购买 nike

在 UNIX shell 中有什么好的技巧可以将行附加到文件的开头吗?例如。类似于

   echo "Foobar" >> file.txt

...但新行会在现有行之前添加?

最佳答案

分两步:

content=$(cat file.txt) # no cat abuse this time
echo -en "foobar\n$content" >file.txt

关于shell - echo >> 样式追加,但到文件的开头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10721623/

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