sed 命令用法总结

实例 1

将一个文件的所有中特定行注释掉,比如下面例子将包含 test2 的行加上注释。

[root@VM_15_187_centos ~]# cat test.log
test
test2
test3
test2
[root@VM_15_187_centos ~]# sed -i "/test2/s/^/#/" test.log
[root@VM_15_187_centos ~]# cat test.log 
test
#test2
test3
#test2

Ref

sed 如何注释掉匹配行
SED 单行脚本快速参考