sed -i 's/abc/xxx/g' file
abc修改前的字符串
xxx是修改后的字符串
file是要被修改的文件
[root@db2 home]# cat test.sh
#!/bin/sh
80
80
33
44
55
[root@db2 home]# sed -i 's/80/test/g' test.sh
[root@db2 home]# cat test.sh
#!/bin/sh
test
test
33
44
55
[root@db2 home]#
这样就把80替换成test字符
阅读(1542) | 评论(1) | 转发(0) |