Linux Sed命令應用

2021-12-30 10:31:29 字數 834 閱讀 6360

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

作者「魔界」

linux sed命令詳解

1.sed簡介 3.sed命令 呼叫sed命令有兩種形式 sed options command file s sed options f scriptfile file s a 在當前行後面加入一行文字。b lable 分支到指令碼中帶有標記的地方,如果分支不存在則分支到指令碼的末尾。c 用新的文...

linux sed命令詳解

3.sed命令 呼叫sed命令有兩種形式 sed options command file s sed options f scriptfile file s a 在當前行後面加入一行文字。b lable 分支到指令碼中帶有標記的地方,如果分支不存在則分支到指令碼的末尾。c 用新的文字改變本行的文字...

linux sed命令詳解

1.sed簡介 1.sed簡介 2.定址 可以通過定址來定位你所希望編輯的行,該位址用數字構成,用逗號分隔的兩個行數表示以這兩行為起止的行的範圍 包括行數表示的那兩行 如1,3表示 1,2,3行,美元符號 表示最後一行。範圍可以通過資料,正規表示式或者二者結合的方式確定 3.sed命令 呼叫sed命...