系统相关
首页 > 系统相关> > Linux sed命令

Linux sed命令

作者:互联网

本文梳理一下平时用到过的sed命令

1、在某一行前或某一行后添加内容

#在内容行的后一行添加新增内容
sed -i '/文件内容/a\新增内容' test.txt
#在内容行的前一行添加新增内容
sed -i '/文件内容/i\新增内容' test.txt

a:append(附加),在某行后附加上一行

i:insert(插入),在某行前插入一行

例子:

#查看test.sh内容
[root@localhost ~]# cat test.sh
qwe
asdf
zxc
asdf
#在包含'qwe'内容的行前新增一行内容'123'
[root@localhost  ~]# sed -i '/qwe/i\123' test.txt
#查看test.sh内容
[root@localhost ~]# cat test.sh
123
qwe
asdf
zxc
asdf
#在包含'asd'内容的行前新增一行内容'456'
[root@localhost ~]# sed -i '/asd/a\456' test.txt
#查看test.sh内容
[root@localhost ~]# cat test.sh
123
qwe
asdf
456
zxc
asdf
456

标签:qwe,sh,命令,sed,内容,Linux,test,asdf
来源: https://blog.csdn.net/chou_kawaii/article/details/121417823