假设文档内容如下:
[root@localhost ~]# cat /tmp/input.txt null 000011112222 test
要求:在1111之前添加AAA,方法如下:
sed -i 's/指定的字符/要插入的字符&/' 文件
[root@localhost ~]# sed -i 's/1111/AAA&/' /tmp/input.txt [root@localhost ~]# cat /tmp/input.txt null 0000AAA11112222 test
要求:在1111之后添加BBB,方法如下:
sed -i 's/指定的字符/&要插入的字符/' 文件
[root@localhost ~]# sed -i 's/1111/&BBB/' /tmp/input.txt [root@localhost ~]# cat /tmp/input.txt null 0000AAA1111BBB2222 test
要求:(1) 删除所有空行;(2) 一行中,如果包含"1111",则在"1111"前面插入"AAA",在"11111"后面插入"BBB"
[root@localhost ~]# sed '/^$/d;s/1111/AAA&/;s/1111/&BBB/' /tmp/input.txt null 0000BBB1111AAA2222 test
要求:在每行的头添加字符,比如"HEAD",命令如下:
[root@localhost ~]# sed -i 's/^/HEAD&/' /tmp/input.txt [root@localhost ~]# cat /tmp/input.txt HEADnull HEAD000011112222 HEAD HEADtest
要求:在每行的尾部添加字符,比如"tail",命令如下:
[root@localhost ~]# sed -i 's/$/&tail/' /tmp/input.txt [root@localhost ~]# cat /tmp/input.txt HEADnulltail HEAD000011112222tail HEADtail HEADtesttail
说明:
1."^"代表行首,"$"代表行尾
2.'s/$/&tail/g'中的字符g代表每行出现的字符全部替换,如果想在特定字符处添加,g就有用了,否则只会替换每行第一个,而不继续往后找。
ubuntu@ubuntu-vm:/work/sva/sva-repo$ echo " <exec>bin/adc</exec> " | sed 's/.*<.*>(.*)<.*>.*/1/'
bin/adc
s/^..*/1/g是正则表达式的替换 s/A/B/ 就是A替换B,而A是^..*(^表示行首,和是有特殊用途的,表示把括号中的内容剔除出来,会一次放到1 2 3这些变量中的,若果有多个括号的话,和中见的.表示匹配任意一个字符),这样通过sed 's/^..*/1/g'内容变成了
提取字符串
现在有如下一串字符串:
"asdfkjasldjkf"shiner"df
需求:
需要提取出shiner子字符串。
命令如下:
[root@localhost /]$ echo "asdfkjasldjkf"shiner"df" | sed 's/(.*)"(.*)"(.*)/2/g'
shiner
命令解释
s: 表示替换命令
(.*)" : 表示第一个引号前的内容
"(.*)":表示两引号之间的内容
)"(.*):表示引号后的内容
2: 表示第二对括号里面的内容
括号里的表达式匹配的内容,可以用1,2等进行引用,第n个括号对内的内容,就用
引用。
这个命令的意思是:
用2代表的第二个括号的内容(shiner)去替换整个字符串,这样就得到了我们所需要的子字符串了。
那么就能获取到了18.08。