在Bash中,如何在每行之后添加文字\ n?

时间:2017-08-28 15:29:48

标签: linux bash unix sed

我有一个文件,其中包含以新行分隔的网址。

在每个网址之后,我想插入文字字符“\ n”。

我该怎么办?

2 个答案:

答案 0 :(得分:1)

sed -i.BAK 's/$/\\n/' files

perl -i.BAK -pe 's/$/\\n/' files

答案 1 :(得分:1)

检查这个例子:

kent$  seq 5|sed 's/$/\\n/'
1\n                        
2\n
3\n
4\n
5\n