- 打印:
sed -n '/yes/p' test.txt #打印test.txt文件中包含yes的行
AI 代码解读 - 大小定转换:
sed 'y/abcdef/ABCDEF/' test.txt
AI 代码解读 - 更改:
sed '/BOOTPROTO/c BOOTPROTO=dhcp' test.txt
AI 代码解读 - 替换:
sed '/yes/s//no/g' test.txt
AI 代码解读 - 合并文件:
sed '$r test.sh' test.txt
AI 代码解读 - 合并行:
sed -n '/a/N;L' test.txt
AI 代码解读 - 模式空间:
h|H 加入到模式空间 g|G 从模式空间中取出 x 交换模式空间和保持空间中的内容
AI 代码解读
本文转自 Lee_吉 51CTO博客,原文链接:http://blog.51cto.com/12173069/2068368