sed命令

Posted quliuliu2013

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sed命令相关的知识,希望对你有一定的参考价值。

假设文档内容如下:
1
2
3
4
5
[[email protected] ~]# cat /tmp/input.txt
null
000011112222
 
test

要求:在1111之前添加AAA,方法如下:

sed -i ‘s/指定的字符/要插入的字符&/‘  文件

1
2
3
4
5
6
[[email protected] ~]# sed -i  ‘s/1111/AAA&/‘ /tmp/input.txt                     
[[email protected] ~]# cat /tmp/input.txt                   
null
0000AAA11112222
 
test

 要求:在1111之后添加BBB,方法如下:

sed -i ‘s/指定的字符/&要插入的字符/‘  文件

1
2
3
4
5
6
[[email protected] ~]# sed -i  ‘s/1111/&BBB/‘ /tmp/input.txt    
[[email protected] ~]# cat /tmp/input.txt                   
null
0000AAA1111BBB2222
 
test

要求:(1) 删除所有空行;(2) 一行中,如果包含"1111",则在"1111"前面插入"AAA",在"11111"后面插入"BBB"

1
2
3
4
[[email protected] ~]# sed ‘/^$/d;s/1111/AAA&/;s/1111/&BBB/‘ /tmp/input.txt   
null
0000BBB1111AAA2222
test

 要求:在每行的头添加字符,比如"HEAD",命令如下:

1
2
3
4
5
6
[[email protected] ~]# sed -i ‘s/^/HEAD&/‘ /tmp/input.txt 
[[email protected] ~]# cat /tmp/input.txt
HEADnull
HEAD000011112222
HEAD
HEADtest

  要求:在每行的尾部添加字符,比如"tail",命令如下:

 

1
2
3
4
5
6
[[email protected] ~]# sed -i ‘s/$/&tail/‘ /tmp/input.txt      
[[email protected] ~]# cat /tmp/input.txt                
HEADnulltail
HEAD000011112222tail
HEADtail
HEADtesttail

说明:
1."^"代表行首,"$"代表行尾


2.‘s/$/&tail/g‘中的字符g代表每行出现的字符全部替换,如果想在特定字符处添加,g就有用了,否则只会替换每行第一个,而不继续往后找。

以上是关于sed命令的主要内容,如果未能解决你的问题,请参考以下文章

linux 特殊符号怎样用sed替换

linux shell sed命令的问题!

VSCode自定义代码片段——git命令操作一个完整流程

Mac 下如何使用sed -i命令

VSCode自定义代码片段——cli的终端命令大全

sed 错误:sed:-e 表达式 #1,字符 22:未终止的 `s' 命令