By 02月15日 2016 Linux Linuxsed
将一个文件的所有中特定行注释掉,比如下面例子将包含 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
sed 如何注释掉匹配行 SED 单行脚本快速参考
tr 命令用法总结
CentOS 6 中禁用 IPv6