毛片不卡视频操逼,日本亚洲电影在线观看,丁香婷婷亚洲五月,五月天亲亲黄色网,五月婷婷狠,村妓网在线视频中文字幕,色综合综合色

綠色資源網(wǎng):您身邊最放心的安全下載站! 最新軟件|熱門排行|軟件分類|軟件專題|廠商大全

綠色資源網(wǎng)

技術(shù)教程
您的位置:首頁操作系統(tǒng)linux → 詳解:Linux Sed命令的應用

詳解:Linux Sed命令的應用

我要評論 2011/09/24 00:33:33 來源:綠色資源網(wǎng) 編輯:downcc.com [ ] 評論:0 點擊:136次

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. 在整行范圍內(nèi)把字符 22 替換為 kokotest,如果沒有g(shù)標記,則只有每行第一個匹配的 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 鄙視