詳解:Linux Sed命令的應(yīng)用
1. (含字符‘22’)在當(dāng)前行上面插入文本 koko = "gggggggggggggg"
sed -i '/22/i\koko = "gggggggggggggg"' /root/soft/iptables
2. (含字符‘22’)在當(dāng)前行下面插入文本 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. 在整行范圍內(nèi)把字符 22 替換為 kokotest,如果沒有g(shù)標(biāo)記,則只有每行第一個匹配的 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
關(guān)鍵詞:Linux,Sed命令
閱讀本文后您有什么感想? 已有 人給出評價!
- 0
- 0
- 0
- 0
- 0
- 0