1. (含字符‘22’)在当前行上面插入文本 koko = "gggggggggggggg"
sed -i ''/22/i\koko = "gggggggggggggg"'' /root/soft/iptables
2. (含字符‘22’)在当前行下面插入文本 koko = "gggggggggggggg"
sed -i ''/22/a\koko = "gggggggggggggg"'' /root/soft/iptables
3. (含字符‘22’)用新的文本改变本行的文本 koko = "gggggggggggggg"
sed -i ''/22/c\koko = "gggggggggggggg"'' /root/soft/iptables
4. 在整行范围内把字符 22 替换为 kokotest,如果没有g标记,则只有每行第一个匹配的 22 被替换成 kokotest
sed -i ''s/22/kokotest/g'' /root/soft/iptables
5. 删除 /root/soft/iptables 文件的第二行
sed -i ''2d'' /root/soft/iptables
6. 删除 /root/soft/iptables 文件的第二行到末尾所有行
sed -i ''2,$d'' /root/soft/iptables
7. 删除 /root/soft/iptables 文件的一行
sed -i ''$d'' /root/soft/iptables
8. 删除 /root/soft/iptables 文件所有包含 22 的行
sed -i ''/22/''d /root/soft/iptables 本文出自 “魔界” 博客,请务必保留此出处http://hardy136.blog.51cto.com/1373368/668486
|