1. 程式人生 > 實用技巧 >linux shell搜尋某個字串,然後在後面加上字串?字串後面插入字串?sed字串後面插入字串?

linux shell搜尋某個字串,然後在後面加上字串?字串後面插入字串?sed字串後面插入字串?

需求描述:

  今天在配置nrpe.cfg這個檔案,裡面有allowed_hosts的IP地址,需要加上監控主機的地址,所以首先要搜尋

  到這個地址,然後呢,加上監控主機的地址,考慮通過sed命令來實現

操作過程

1.檢視原檔案

[root@testvm02 ~]# cat nrpe.cfg 
allowed_hosts=127.0.0.1

2.通過sed命令,在後面加上監控端的主機IP

[root@testvm02 ~]# sed -i 's/allowed_hosts=127.0.0.1/&,192.168.53.25/' nrpe.cfg #通過-i表示直接對檔案進行操作s表示替換通過&+字串,來實現將新的字串增加到找到得字串的後面.
[root@testvm02 ~]# cat nrpe.cfg   #重新檢視檔案的內容,已經在原來的字串後面加上了新的字串(帶有逗號的字串)
allowed_hosts=127.0.0.1,192.168.53.25



1

2

3

4

5

[root@localhost ~]# cat /tmp/input.txt

null

000011112222

test

要求:在1111之前新增AAA,方法如下:

sed -i 's/指定的字元/要插入的字元&/'檔案

1

2

3

4

5

6

[root@localhost ~]# sed -i's/1111/AAA&/'/tmp/input.txt

[root@localhost ~]# cat /tmp/input.txt

null

0000AAA11112222

test

要求:在1111之後新增BBB,方法如下:

sed -i 's/指定的字元/&要插入的字元/'檔案

1

2

3

4

5

6

[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"

1

2

3

4

[root@localhost ~]# sed'/^$/d;s/1111/AAA&/;s/1111/&BBB/'/tmp/input.txt

null

0000BBB

1111AAA2222

test

要求:在每行的頭新增字元,比如"HEAD",命令如下:

1

2

3

4

5

6

[root@localhost ~]# sed -i's/^/HEAD&/'/tmp/input.txt

[root@localhost ~]# cat /tmp/input.txt

HEADnull

HEAD000011112222

HEAD

HEADtest

要求:在每行的尾部新增字元,比如"tail",命令如下:

1

2

3

4

5

6

[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就有用了,否則只會替換每行第一個,而不繼續往後找。