gpt4 book ai didi

linux - 使用 echo 和 cat 不需要的换行符

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:54:32 25 4
gpt4 key购买 nike

我想在文件的开头添加一行,使用

echo 'time/F:x1:x2' | cat - file.txt>newfile.txt

但这会在新文件的每一行产生换行符(添加的“time/F:x1:x2”行之后除外)。关于如何避免这种情况的任何想法?

最佳答案

使用 -n 禁用尾随换行符:

echo -n 'time/F:x1:x2' | cat - file.txt > newfile.txt

还有其他方法:

sed '1s|^|time/F:x1:x2|' file.txt > newfile.txt

关于linux - 使用 echo 和 cat 不需要的换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22487023/

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