本文共 359 字,大约阅读时间需要 1 分钟。
sed -n '/yes/p' test.txt #打印test.txt文件中包含yes的行
sed 'y/abcdef/ABCDEF/' test.txt
sed '/BOOTPROTO/c BOOTPROTO=dhcp' test.txt
sed '/yes/s//no/g' test.txt
sed '$r test.sh' test.txt
sed -n '/a/N;L' test.txt
h|H 加入到模式空间g|G 从模式空间中取出x 交换模式空间和保持空间中的内容
转载地址:http://ridfo.baihongyu.com/