久久久久久久性爱潮,国产又粗又猛又爽又黄下载视频,尤物国产在线一区视频,欧美日本国产在线不卡

<sup id="4uqqy"><ol id="4uqqy"></ol></sup>
  • <th id="4uqqy"></th>

      • <strike id="4uqqy"><nobr id="4uqqy"><ins id="4uqqy"></ins></nobr></strike><sup id="4uqqy"></sup><strong id="4uqqy"><u id="4uqqy"></u></strong>
        <sub id="4uqqy"></sub>

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

          綠色資源網(wǎng)

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

          詳解:Linux Sed命令的應(yīng)用

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

          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 鄙視