sed命令使用(3)

2018-12-09  本文已影响0人  冰舞one

1、sed 在文件指定行插入新的内容 用参数:i

root@localhost scripts]# sed '1i sedadd' b.log #在第一行添加

sedadd

00

01

[root@localhost scripts]# sed '2i sedadd' b.log#第二行添加

00

sedadd

01

2、sed 在文件里指定行的后添加内容参数:a

root@localhost scripts]# sed '2asedadd_a' b.log

00

01

sedadd_a

root@localhost scripts]#

[root@localhost scripts]# sed '$a sedadd_a' b.log #在内容的结尾添加一行新的内容

00

01

02

sedadd_a

[root@localhost scripts]#

上一篇下一篇

猜你喜欢

热点阅读