sed -i 's/指定的字符/要插入的字符&/' 文件
要求:在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 0000 AAA 11112222 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 0000 AAA 1111 BBB 2222 test |