天天看点

每天三分钟搞定linux shell脚本(42) sed编辑器来了!!!sed写入文件

sed写入文件

每天三分钟搞定linux shell脚本(42) sed编辑器来了!!!sed写入文件

写入文件要用w指定,比如把第二行到第四行的内容写到文件test中,输入:

sed '2,4w test' value
           

查看test中的内容为:

This is line 2
This is line 3
This is line 4
           

再举例输入:

sed -n '/line 3/w test2' value
           

运行后查看test2文件,内容为:

This is line 3
           

继续阅读