sed是stream editor的簡稱,也就是流編輯器。它一次處理一行內容,處理時,把當前處理的行儲存在臨時緩衝區中,稱為「模式空間」(pattern space),接著用sed命令處理緩衝區中的內容,處理完成後,把緩衝區的內容送往螢幕。接著處理下一行,這樣不斷重複,直到檔案末尾。檔案內容並沒有 改變,除非你使用重定向儲存輸出。
sed命令的使用規則是這樣的:
sed [option] 'command' input_file
其中option是可選的,常用的option有如下幾種:
假設有乙個本地檔案test.txt,檔案內容如下:
本節將使用該檔案詳細演示每乙個命令的用法。
[qifuguang@winwill~]$ sed '1a \add one' test.txtthis is first line
add one
this is second line
this is third line
this is fourth line
this is fifth line
end
本例命令部分中的1表示第一行,同樣的第二行寫成2,第一行到第三行寫成1,3
,用$
表示最後一行,比如2,$
表示第二行到最後一行中間所有的行(包含第二行和最後一行)。
本例的作用是在第一行之後增加字串」add one」,從輸出可以看到具體效果。
[qifuguang@winwill~]$ sed '1,$a \add one' test.txtthis is first line
add one
this is second line
add one
this is third line
add one
this is fourth line
add one
this is fifth line
add one
add one
end
add one
本例表示在第一行和最後一行所有的行後面都加上」add one」字串,從輸出可以看到效果。
[qifuguang@winwill~]$ sed '/first/a \add one' test.txtthis is first line
add one
this is second line
this is third line
this is fourth line
this is fifth line
end
本例表示在包含」first」字串的行的後面加上字串」add one」,從輸出可以看到第一行包含first,所以第一行之後增加了」add one」
[qifuguang@winwill~]$ sed '/^ha.*day$/a \add one' test.txtthis is first line
this is second line
this is third line
this is fourth line
this is fifth line
add one
end
i命令使用方法和a命令一樣的,只不過是在匹配的行的前面插入字串,所以直接將上面a命令的示例的a替換成i即可,在此就不囉嗦了。
[qifuguang@winwill~]$ sed '$c \add one' test.txtthis is first line
this is second line
this is third line
this is fourth line
this is fifth line
add one
本例表示將最後一行替換成字串」add one」,從輸出可以看到效果。
[qifuguang@winwill~]$ sed '4,$c \add one' test.txtthis is first line
this is second line
this is third line
add one
本例將第四行到最後一行的內容替換成字串」add one」。
[qifuguang@winwill~]$ sed '/^ha.*day$/c \replace line' test.txtthis is first line
this is second line
this is third line
this is fourth line
this is fifth line
replace line
end
本例將以ha開頭,以day結尾的行替換成」replace line」。
[qifuguang@winwill~]$ sed '/^ha.*day$/d' test.txtthis is first line
this is second line
this is third line
this is fourth line
this is fifth line
end
本例刪除以ha開頭,以day結尾的行。
[qifuguang@winwill~]$ sed '4,$d' test.txtthis is first line
this is second line
this is third line
本例刪除第四行到最後一行中的內容。
[qifuguang@winwill~]$ sed -n '4,$p' test.txtthis is fourth line
this is fifth line
end
本例在螢幕上列印第四行到最後一行的內容,p命令一般和-n選項一起使用。
[qifuguang@winwill~]$ sed -n '/^ha.*day$/p' test.txt
本例列印以ha開始,以day結尾的行。
實際運用中s命令式最常使用到的。
[qifuguang@winwill~]$ sed 's/line/text/g' test.txtthis is first text
this is second text
this is third text
this is fourth text
this is fifth text
end
本例將檔案中的所有line替換成text,最後的g是global的意思,也就是全域性替換,如果不加g,則只會替換本行的第乙個line。
this is first line
this is second line
this is third line
this is fourth line
this is fifth line
end
[qifuguang@winwill~]$ sed 's/\(.*\)line$/\1/g' test.txtthis is first
this is second
this is third
this is fourth
this is fifth
end
這個例子有點複雜,先分解一下。首先s命令的模式是s/old/new/g
這樣的,所以本例的old部分即\(.*\)line$
,sed命令中使用\(\)
包裹的內容表示正規表示式的第n部分,序號從1開始計算,本例中只有乙個\(\)
所以\(.*\)
表示正規表示式的第一部分,這部分匹配任意字串,所以\(.*\)line$
匹配的就是以line結尾的任何行。然後將匹配到的行替換成正規表示式的第一部分(本例中相當於刪除line部分),使用\1
表示匹配到的第一部分,同樣\2
表示第二部分,\3
表示第三部分,可以依次這樣引用。比如下面的例子:
[qifuguang@winwill~]$ sed 's/\(.*\)is\(.*\)line/\1\2/g' test.txtthis first
this second
this third
this fourth
this fifth
end
正規表示式中is
兩邊的部分可以用\1
和\2
表示,該例子的作用其實就是刪除中間部分的is。
sed命令詳解
sed 是乙個精簡的 非互動式的編輯器。它能執行與編輯vi和emacs相同的編輯任務。sed編輯器不提供互動使用方式 只能在命令列輸入編輯命令 指定檔案 名,然後在螢幕上察看輸出。sed編輯器沒有破壞性。它不會修改檔案,除非用shell重定向來儲存輸出結果。預設情況下,所以的輸出都被列印到螢幕上。1...
sed命令詳解
sed 簡介 sed 意為流編輯器,源自英語 stream editor 的縮寫 是unix常見的命令列程式。sed 用來把文件或字串裡面的文字經過一系列編輯命令轉換為另一種格式輸出。sed 通常用來匹配乙個或多個正規表示式的文字進行處理。分號 可以用作分隔命令的指示符。常用的sed命令 模式 p ...
sed命令詳解
sed編輯器逐行處理輸入,然後把結果傳送到螢幕。i選項 直接作用原始檔,原始檔將被修改。sed命令和選項 a 在當前行後新增一行或多行 c 用新文字替換當前行中的文字 d刪除行 i 在當前行之前插入文字 h把模式空間的內容複製到暫存緩衝區 h把模式空間的內容新增到緩衝區 g取出暫存緩衝區的內容,將其...