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