sed用法总结
目錄:
????★?命令行參數簡介
????★?首先假設我們有這樣一個文本文件?sedtest.txt
????★?輸出指定范圍的行?p
????★?在每一行前面增加一個制表符(^I)
????★?在每一行后面增加--end
????★?顯示指定模式匹配行的行號?[/pattern/]=
????★?在匹配行后面增加文本?[/pattern/]a\?或者?[address]a\
????★?刪除匹配行?[/pattern/]d?或者?[address1][,address2]d
????★?替換匹配行?[/pattern/]c\?或者?[address1][,address2]c\
????★?在匹配行前面插入文本?[/pattern/]i\?或者?[address]i\
????★?替換匹配串(注意不再是匹配行)?[addr1][,addr2]s/old/new/g
????★?限定范圍后的模式匹配
????★?指定替換每一行中匹配的第幾次出現
????★?&代表最后匹配
????★?利用sed修改PATH環境變量
????★?測試并提高sed命令運行效率
????★?指定輸出文件?[address1][,address2]w?outputfile
????★?指定輸入文件?[address]r?inputfile
????★?替換相應字符?[address1][,address2]y/old/new/
????★?!號的使用
????★?\c正則表達式c?的使用
????★?sed命令中正則表達式的復雜性
????★?轉換man手冊成普通文本格式(新)
????★?sed的man手冊(用的就是上面的方法)
★?命令行參數簡介
????sed
????-e?script?指定sed編輯命令
????-f?scriptfile?指定的文件中是sed編輯命令
????-n?寂靜模式,抑制來自sed命令執行過程中的冗余輸出信息,比如只
???????顯示那些被改變的行。
????不明白?不要緊,把這些骯臟丟到一邊,跟我往下走,不過下面的介紹里
????不包括正則表達式的解釋,如果你不明白,可能有點麻煩。
★?首先假設我們有這樣一個文本文件?sedtest.txt
cat?>?sedtest.txt
Sed?is?a?stream?editor
----------------------
A?stream?editor?is?used?to?perform?basic?text?transformations?on?an?input?stream
--------------------------------------------------------------------------------
While?in?some?ways?similar?to?an?editor?which?permits?scripted?edits?(such?as?ed
)
,
--------------------------------------------------------------------------------
-
-
sed?works?by?making?only?one?pass?over?the?input(s),?and?is?consequently?more
-----------------------------------------------------------------------------
efficient.?But?it?is?sed's?ability?to?filter?text?in?a?pipeline?which?particular
l
y
--------------------------------------------------------------------------------
-
★?輸出指定范圍的行?p?other?types?of?editors.
sed?-e?"1,4p"?-n?sedtest.txt
sed?-e?"/from/p"?-n?sedtest.txt
sed?-e?"1,/from/p"?-n?sedtest.txt
★?在每一行前面增加一個制表符(^I)
sed?"s/^/^I/g"?sedtest.txt
注意^I的輸入方法是ctrl-v?ctrl-i
單個^表示行首
★?在每一行后面增加--end
sed?"s/$/--end/g"?sedtest.txt
單個$表示行尾
★?顯示指定模式匹配行的行號?[/pattern/]=
sed?-e?'/is/='?sedtest.txt
1
Sed?is?a?stream?editor
----------------------
3
A?stream?editor?is?used?to?perform?basic?text?transformations?on?an?input?stream
--------------------------------------------------------------------------------
While?in?some?ways?similar?to?an?editor?which?permits?scripted?edits?(such?as?ed
)
,
--------------------------------------------------------------------------------
-
-
7
sed?works?by?making?only?one?pass?over?the?input(s),?and?is?consequently?more
-----------------------------------------------------------------------------
9
efficient.?But?it?is?sed's?ability?to?filter?text?in?a?pipeline?which?particular
l
y
--------------------------------------------------------------------------------
-
-
意思是分析sedtest.txt,顯示那些包含is串的匹配行的行號,注意11行中出現了is字符串
這個輸出是面向stdout的,如果不做重定向處理,則不影響原來的sedtest.txt
★?在匹配行后面增加文本?[/pattern/]a\?或者?[address]a\
^D
sed?-f?sedadd.script?sedtest.txt
Sed?is?a?stream?editor
A?stream?editor?is?used?to?perform?basic?text?transformations?on?an?input?stream
While?in?some?ways?similar?to?an?editor?which?permits?scripted?edits?(such?as?ed
)
,
--------------------------------------------------------------------------------
-
-
sed?works?by?making?only?one?pass?over?the?input(s),?and?is?consequently?more
-----------------------------------------------------------------------------
efficient.?But?it?is?sed's?ability?to?filter?text?in?a?pipeline?which?particular
l
y
--------------------------------------------------------------------------------
-
-
[scz@?/home/scz/src]>?sed?-e?"a\\
+++++++++
---------------------------------------------
找到包含from字符串的行,在該行的下一行增加+++++++++。
這個輸出是面向stdout的,如果不做重定向處理,則不影響原來的sedtest.txt
很多人想在命令行上直接完成這個操作而不是多一個sedadd.script,不幸的是,這需要用�
�
續行符\,
[scz@?/home/scz/src]>?sed?-e?"/from/a\\
>?+++++++++"?sedtest.txt
[scz@?/home/scz/src]>?sed?-e?"a\\
>?+++++++++"?sedtest.txt
上面這條命令將在所有行后增加一個新行+++++++++
[scz@?/home/scz/src]>?sed?-e?"1?a\\
>?+++++++++"?sedtest.txt
把下面這兩行copy/paste到一個shell命令行上,效果一樣
+++++++++"?sedtest.txt
[address]a\?只接受一個地址指定
對于a命令,不支持單引號,只能用雙引號,而對于d命令等其他命令,同時
★?刪除匹配行?[/pattern/]d?或者?[address1][,address2]d
sed?-e?'/---------------------------------------------/d'?sedtest.txt
Sed?is?a?stream?editor
A?stream?editor?is?used?to?perform?basic?text?transformations?on?an?input?stream
While?in?some?ways?similar?to?an?editor?which?permits?scripted?edits?(such?as?ed
)
,
sed?works?by?making?only?one?pass?over?the?input(s),?and?is?consequently?more
efficient.?But?it?is?sed's?ability?to?filter?text?in?a?pipeline?which?particular
l
y
sed?-e?'6,10d'?sedtest.txt
刪除6-10行的內容,包括6和10
sed?-e?"2d"?sedtest.txt
刪除第2行的內容
sed?"1,/^$/d"?sedtest.txt
刪除從第一行到第一個空行之間的所有內容
注意這個命令很容易帶來意外的結果,當sedtest.txt中從第一行開始并沒有空行,則sed刪
�
�
sed?"1,/from/d"?sedtest.txt
刪除從第一行到第一個包含from字符串的行之間的所有內容,包括第一個包含
from字符串的行。
★?替換匹配行?[/pattern/]c\?或者?[address1][,address2]c\
sed?-e?"/is/c\\
**********"?sedtest.txt
尋找所有包含is字符串的匹配行,替換成**********
**********
----------------------
**********
--------------------------------------------------------------------------------
While?in?some?ways?similar?to?an?editor?which?permits?scripted?edits?(such?as?ed
)
,
--------------------------------------------------------------------------------
-
-
**********
-----------------------------------------------------------------------------
**********
--------------------------------------------------------------------------------
-
sed?-e?"1,11c\\
**********"?sedtest.txt----------------------
在1-12行內搜索所有from字符串,分別替換成****字符串
★?限定范圍后的模式匹配
sed?"/But/s/is/are/g"?sedtest.txt
對那些包含But字符串的行,把is替換成are
sed?"/is/s/t/T/"?sedtest.txt
對那些包含is字符串的行,把每行第一個出現的t替換成T
sed?"/While/,/from/p"?sedtest.txt?-n
輸出在這兩個模式匹配行之間的所有內容
★?指定替換每一行中匹配的第幾次出現
sed?"s/is/are/5"?sedtest.txt
把每行的is字符串的第5次出現替換成are
★?&代表最后匹配
sed?"s/^$/(&)/"?sedtest.txt
給所有空行增加一對()
sed?"s/is/(&)/g"?sedtest.txt
給所有is字符串外增加()
sed?"s/.*/(&)/"?sedtest.txt
給所有行增加一對()
sed?"/is/s/.*/(&)/"?sedtest.txt
給所有包含is字符串的行增加一對()
★?利用sed修改PATH環境變量
先查看PATH環境變量
[scz@?/home/scz/src]>?echo?$PATH
/usr/bin:/usr/bin:/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/X11R6/bin:.
去掉尾部的{?:/usr/X11R6/bin:.?}
[scz@?/home/scz/src]>?echo?$PATH?|?sed?"s/^\(.*\):\/usr[/]X11R6\/bin:[.]$/\1/"
/usr/bin:/usr/bin:/bin:/usr/local/bin:/sbin:/usr/sbin
去掉中間的{?:/bin:?}
[scz@?/home/scz/src]>?echo?$PATH?|?sed?"s/^\(.*\):\/bin:\(.*\)$/\1\2/"
/usr/bin:/usr/bin/usr/local/bin:/sbin:/usr/sbin:/usr/X11R6/bin:.
[/]表示/失去特殊意義
\/同樣表示/失去意義
\1表示子匹配的第一次出現
\2表示子匹配的第二次出現
\(.*\)表示子匹配
去掉尾部的:,然后增加新的路徑
PATH=`echo?$PATH?|?sed?'s/\(.*\):$/\1/'`:$HOME/src
注意反引號`和單引號'的區別。
★?測試并提高sed命令運行效率
time?sed?-n?"1,12p"?webkeeper.db?>?/dev/null
time?sed?12q?webkeeper.db?>?/dev/null
可以看出后者比前者效率高。
[address]q?當碰上指定行時退出sed執行
★?指定輸出文件?[address1][,address2]w?outputfile
sed?"1,10w?sed.out"?sedtest.txt?-n
將sedtest.txt中1-10行的內容寫到sed.out文件中。
★?指定輸入文件?[address]r?inputfile
sed?"1r?sedappend.txt"?sedtest.txt
將sedappend.txt中的內容附加到sedtest.txt文件的第一行之后
★?替換相應字符?[address1][,address2]y/old/new/
sed?"y/abcdef/ABCDEF/"?sedtest.txt
將sedtest.txt中所有的abcdef小寫字母替換成ABCDEF大寫字母。
★?!號的使用
sed?-e?'3,7!d'?sedtest.txt
刪除3-7行之外的所有行
sed?-e?'1,/from/!d'?sedtest.txt
找到包含from字符串的行,刪除其后的所有行
★?\c正則表達式c?的使用
sed?-e?"\:from:d"?sedtest.txt
等價于?sed?-e?"/from/d"?sedtest.txt
★?sed命令中正則表達式的復雜性
cat?>?sedtest.txt
^\/[}]{.*}[\(]$\)
^D
如何才能把該行替換成
\(]$\)\/[}]{.*}^[
★?轉換man手冊成普通文本格式(新)
man?sed?|?col?-b?>?sed.txt
sed?-e?"s/^H//g"?-e?"/^$/d"?-e?"s/^^I/????????/g"?-e?"s/^I/?/g"?sed.txt?>?sedman
.
txt
刪除所有退格鍵、空行,把行首的制表符替換成8個空格,其余制表符替換成一個空格。
=========================================================
2、sed選項
?? -n?? ?使用安靜模式.則只有經過sed特殊處理的哪一行才會被列出來
?? -e?? ?傳送帶(前面執行完傳遞給后面)
?? -f?? ?跟隨腳本文件名
?? -r?? ?脫意
?? -i?? ?直接修改讀取文件
3、sed命令詳解
?? a? ?? 新增, a 的后面可以接字串,而這些字串會在新的一行出現(目前的下一行)~
?? c???? 取代, c 的后面可以接字串,這些字串可以取代 n1,n2 之間的行!
?? d???? 刪除,因為是刪除啊,所以 d 后面通常不接任何咚咚;
?? i????? 插入, i 的后面可以接字串,而這些字串會在新的一行出現(目前的上一行);
?? p???? 列印,亦即將某個選擇的資料印出。通常 p 會與參數 sed -n 一起運作~
?? s???? 取代,通常這個 s 的動作可以搭配正規表示法!例如 1,20s/old/new/g?
?? n?? ?讀取下一個輸入行, 用下一個命令處理新的行
4、以下是替換標記
? g?? ?表示行內全面替換
? p?? ?表示打印行
? w?? ?表示把行寫入一個文件
? x?? ?表示互換模快板中的文本和緩沖區中的文本
? y?? ?表示把一個字符翻譯為另外的字符(不用于正則表達式)
5、元字符集,匹配符
^?? ??? 錨定行的開始. 如/^sed/ 匹配所有以sed開頭的行
$? ? ?? 錨定行的結束. 如/sed$/ 匹配所有以sed結尾的行
.?? ? ? ? 匹配一個非換行符. 如/*sed/ 匹配s后接一個任意字符然后是d
* ? ? ?? 匹配零或多個字符. 如/*sed/ 匹配所有模塊是一個或多個空格后緊跟sed的行
[] ?? ? 匹配一個制定范圍內的字符如. /[Ss]ed/ 匹配sed和Sed
[^]?? ?匹配一個不在制定范圍內的字符. 如/[^A-RT-Z]ed/ 匹配不包含A-R和T-Z的一個字母開頭,緊跟ed的行
\(..\)? ? ??? 保存匹配的字符. 如s/\(love\)able/\1rs loveable被替換成lovers
&?? ??? ? ?? ? 保存搜索字符用來替換其它字符. 如s/love/**&**/ love這成**love**
\<?? ?????? ?? 錨定單詞的開始. 如/\\> 錨定單詞的結束. 如/love\>匹配包含以love結尾的單詞行
x\{m\}?????? 重復字符x,m次. 如/o\{5\}匹配包含5個o的行
x\{m,\}?? ?? 重復字符x,至少m次. 如 /o\{5,}/匹配至少有5個o的行
x\{m,n\}??? 重復字符x,至少m次.把多余n次. 如 /o\{5,10\}/匹配5-10個o的行
6、sed中查找模式匹配
.?? ???????? 單字通配符
[0-9] ?? ? 匹配0-9
[^a-z]??? 不匹配a-z的所有其它字符
“.*”? ? ?? ? 匹配””內任何字符串
^? ? ? ? ? ? 匹配行開始
$? ? ? ? ? ? 匹配行結束
7、例子
刪除: dd命令
sed ‘2d’ file?? ??? ? ? ? ? ??刪除file文件的第2行
sed ‘2,$d’ file?? ??? ? ? ??刪除file文件的第2行到末尾所有行
sed ‘$d’ file?? ?? ? ? ? ? ??刪除file文件的最后一行
sed ‘/test/’d file?? ? ? ??刪除file文件所有包含test的行
sed d file?? ??? ????? ? ????刪除file文件中的所有行
sed 2,5d file?? ? ? ? ? ???刪除file中的2-5行
sed /abc/d file?? ??? ???刪除file中包含字符串abc所有的行
替換: s命令
sed ‘s/test/mytest/g’ file?? ??? ?在整行范圍內把test替換為mytest. 如果沒有g標記,則只有每行第一個匹配的test被替換成mytest
sed -n ‘s/^test/mytest/p’ file?? ?????-n選項和p標志一起使用表示只打印那些發生替換的行, 如果某一行開頭的test被替換成mytest,就打印它
sed ‘s/^192.168.1.1/&localhost’ file?? ?&符號表示替換字符串中被找到的部分. 所有以192.168.1.1開頭的行都會被替換成它自己加localhost,變成192.168.1.1localhost
sed -n ‘s/\(love\)able/\1rs/p’ file?? ?love被標記為1,所有loveable會被替換成lovers,而且替換的行會被打印出來
sed ‘s#10#100#g’ file?? ??? ??? ?不論什么字符,緊跟著s的命令都被認為是最新的分隔符,所以,’#’在這里是分隔符,代替了默認的”/”分隔符. 表示把所有10替換成100
選定行的范圍: 逗號
sed -n ‘/test/,/check/p’ file?? ?????所有在模塊test和check所確定范圍內的行都被打印
sed -n ‘5,/^test/p’ file?? ??? ? ? ? ????打印從第5行開始到第一個包含以test開始行之間的所有行
sed ‘/test/,/check/s/$/sed test/’ file?? ?對于模塊test和west之間的行,每行的末尾用字符串sed test替換
多點編輯: e命令
sed -e ‘1,5d’ -e ‘s/test/check/’ file?? ?-e選項允許在同一行里執行多條命令.刪除1-5行,check替換test
sed -e ‘/and/s/aaa/bbb’ file?? ? ? ? ??sed中用bbb替換同一行中包括字符串and的字符串aaa,而不是每一行中的字符串aaa
讀入文件: r命令
sed ‘/test/r file_a’ file?? ??? ?file_a里的內容被讀進來,顯示在與test匹配的行后面. 如果匹配多行,則file_a內容將顯示在所有匹配行的下面
寫入文件: w命令
sed -n ‘test/w file_a’ file?? ??? ?file中所包含的test行都被寫入file里
插入: i命令
sed ‘/test/i\\ new line’ file?? ??? ?如果test被匹配, 則把反斜杠后面的文本插入到匹配行的上面
sed -e ‘1 ia’ -e ‘$ a3′ file?? ? ? ?? ???在第一行上面插入a,在末尾行下面插入3
下一個: n命令
sed ‘/test/{n; s/aa/bb/;}; file?? ??? ?如果test被匹配, 則移動到匹配行的下一行,替換這一行的aa變為bb, 并打印該行,然后繼續
=========================================================
★?sed的man手冊(用的就是上面的方法)
NAME
???????sed?-?a?Stream?EDitor
SYNOPSIS
???????sed?[-n]?[-V]?[--quiet]?[--silent]?[--version]?[--help]
???????????[-e?script]?[--expression=script]
???????????[-f?script-file]?[--file=script-file]
???????????[script-if-no-other-script]
???????????[file...]
DESCRIPTION
???????Sed??is?a?stream?editor.??A?stream?editor?is?used?to?per-
???????form?basic?text?transformations?on?an?input?stream?(a?file
???????or??input?from?a?pipeline).??While?in?some?ways?similar?to
???????an?editor?which?permits?scripted?edits?(such?as?ed),??sed
???????works??by??making??only?one?pass?over?the?input(s),?and?is
???????consequently?more?efficient.??But?it?is?sed's??ability??to
???????filter?text?in?a?pipeline?which?particularly?distinguishes
???????it?from?other?types?of?editors.
OPTIONS
???????Sed??may??be??invoked??with??the??following???command-line
???????options:
???????-V
???????--version
??????????????Print??out?the?version?of?sed?that?is?being?run?and
??????????????a?copyright?notice,?then?exit.
???????-h
???????--help?Print?a?usage??message??briefly??summarizing??these
??????????????command-line?options?and?the?bug-reporting?address,
??????????????then?exit.
???????-n
???????--quiet
???????--silent
??????????????By?default,?sed?will?print?out?the?pattern?space?at
??????????????the??end?of??each?cycle?through?the?script.??These
??????????????options?disable?this?automatic??printing,??and??sed
??????????????will??only??produce??output?when?explicitly?told?to
??????????????via?the?p?command.
???????-e?script
???????--expression=script
??????????????Add?the?commands?in?script?to?the?set??of??commands
??????????????to?be?run?while?processing?the?input.
???????-f?script-file
???????--file=script-file
??????????????Add??the?commands?contained?in?the?file?script-file
??????????????to?the?set?of?commands?to?be?run?while??processing
??????????????the?input.
???????If??no??-e,-f,--expression,?or?--file?options?are?given?on
???????the?command-line,?then?the?first??non-option??argument??on
???????the?command?line?is?taken?to?be?the?script?to?be?executed.
???????If?any?command-line?parameters?remain?after?processing?the
???????above,??these??parameters??are?interpreted?as?the?names?of
???????input?files?to?be?processed.??A?file?name?of?-??refers??to
???????the??standard??input?stream.??The?standard?input?will?pro-
???????cessed?if?no?file?names?are?specified.
Command?Synopsis
???????This?is?just?a?brief?synopsis?of?sed?commands?to?serve??as
???????a?reminder?to?those?who?already?know?sed;?other?documenta-
???????tion?(such?as?the?texinfo?document)?must?be?consulted??for
???????fuller?descriptions.
???Zero-address?``commands''
???????:?label
??????????????Label?for?b?and?t?commands.
???????#comment
??????????????The??comment?extends?until?the?next?newline?(or?the
??????????????end?of?a?-e?script?fragment).
???????}??????The?closing?bracket?of?a?{?}?block.
???Zero-?or?One-?address?commands
???????=??????Print?the?current?line?number.
???????a?\
???????text???Append?text,?which?has?each?embedded??newline??pre-
??????????????ceeded?by?a?backslash.
???????i?\
???????text???Insert??text,??which?has?each?embedded?newline?pre-
??????????????ceeded?by?a?backslash.
???????q??????Immediately?quit?the?sed?script?without??processing
??????????????any??more??input,??except?that?if?auto-print?is?not
??????????????diabled?the?current?pattern?space?will?be??printed.
???????r?filename
??????????????Append?text?read?from?filename.
???Commands?which?accept?address?ranges
???????{??????Begin?a?block?of?commands?(end?with?a?}).
???????b?label
??????????????Branch?to?label;?if?label?is?omitted,?branch?to?end
??????????????of?script.
???????t?label
??????????????If?a?s///?has?done?a?successful?substitution??since
??????????????the??last??input?line?was?read?and?since?the?last?t
??????????????command,?then?branch?to?label;?if?label?is?omitted,
??????????????branch?to?end?of?script.
???????c?\
???????text???Replace??the??selected??lines??with?text,?which?has
??????????????each?embedded?newline?preceeded?by?a?backslash.
???????d??????Delete?pattern?space.??Start?next?cycle.
???????D??????Delete?up?to?the?first?embedded?newline?in?the?pat-
??????????????tern??space.???Start??next??cycle,?but?skip?reading
??????????????from?the?input?if?there?is?still?data?in?the??pat-
??????????????tern?space.
???????h?H????Copy/append?pattern?space?to?hold?space.
???????g?G????Copy/append?hold?space?to?pattern?space.
???????x??????Exchange?the??contents??of??the?hold??and?pattern
??????????????spaces.
???????l??????List?out?the?current?line?in?a?``visually?unambigu-
??????????????ous''?form.
???????n?N????Read/append?the?next?line?of?input?into?the?pattern
??????????????space.
???????p??????Print?the?current?pattern?space.
???????P??????Print?up?to?the?first?embedded?newline?of?the??cur-
??????????????rent?pattern?space.
???????s/regexp/replacement/
??????????????Attempt??to?match?regexp?against?the?pattern?space.
??????????????If?successful,?replace?that??portion??matched??with
??????????????replacement.???The?replacement?may?contain?the?spe-
??????????????cial?character?&?to?refer?to?that??portion??of??the
??????????????pattern?space??which??matched,?and??the??special
??????????????escapes?\1?through?\9?to?refer?to?the?corresponding
??????????????matching?sub-expressions?in?the?regexp.
???????w??????filename?Write??the?current?pattern?space?to?file-
??????????????name.
???????y/source/dest/
??????????????Transliterate?the?characters?in?the??pattern??space
??????????????which?appear?in?source?to?the?corresponding?charac-
??????????????ter?in?dest.
Addresses
???????Sed?commands?can?be?given?with?no?addresses,?in?which?case
???????the?command?will?be?executed?for?all?input?lines;?with?one
???????address,?in?which?case?the?command?will?only??be??executed
???????for??input??lines??which??match?that?address;?or?with?two
???????addresses,?in?which?case?the?command?will?be?executed??for
???????all??input??lines?which?match?the?inclusive?range?of?lines
???????starting?from?the?first?address?and?continuing?to?the?sec-
???????ond??address.???Three?things?to?note?about?address?ranges:
???????the?syntax?is?addr1,addr2?(i.e.,?the?addresses??are??sepa-
???????rated??by??a??comma);??the??line??which?addr1?matched?will
???????always?be?accepted,?even?if?addr2?selects?an?earlier?line;
???????and??if?addr2??is?a?regexp,?it?will?not?be?tested?against
???????the?line?that?addr1?matched.
???????After?the?address?(or?address-range),?and?before?the??com-
???????mand,??a?!??may?be?inserted,?which?specifies?that?the?com-
???????mand?shall?only?be?executed?if?the??address??(or??address-
???????range)?does?not?match.
???????The?following?address?types?are?supported:
???????number?Match?only?the?specified?line?number.
???????first~step
??????????????Match??every?step'th?line?starting?with?line?first.
??????????????For?example,?``sed?-n?1~2p''??will??print??all??the
??????????????odd-numbered??lines??in??the??input?stream,?and?the
??????????????address?2~5?will?match?every?fifth??line,??starting
??????????????with?the?second.?(This?is?a?GNU?extension.)
???????$??????Match?the?last?line.
???????/regexp/
??????????????Match?lines?matching?the?regular?expression?regexp.
???????\cregexpc
??????????????Match?lines?matching?the?regular?expression?regexp.
??????????????The?c?may?be?any?character.
Regular?expressions
???????POSIX.2?BREs??should??be??supported,?but?they?aren't?com-
???????pletely?yet.??The?\n??sequence??in??a??regular??expression
???????matches?the??newline??character.??There?are?also?some?GNU
???????extensions.??[XXX?FIXME:?more?needs?to?be??said.???At??the
???????very???least,???a??reference??to??another??document??which
???????describes?what?is?supported?should?be?given.]
Miscellaneous?notes
???????This?version?of?sed?supports?a?\<newline>?sequence?in??all
???????regular?expressions,?the?replacement?part?of?a?substitute
???????(s)?command,?and??in??the??source??and??dest??parts??of?a
???????transliterate??(y)??command.???The??\?is?stripped,?and?the
???????newline?is?kept.
SEE?ALSO
???????awk(1),?ed(1),?expr(1),?emacs(1),?perl(1),??tr(1),??vi(1),
???????regex(5)?[well,?one?ought?to?be?written...?XXX],?sed.info,
???????any?of?various?books?on?sed,?the?sed?FAQ
???????(http://www.wollery.demon.co.uk/sedtut10.txt,
???????http://www.ptug.org/sed/sedfaq.htm).
BUGS
???????E-mail?bug?reports?to?bug-gnu-utils@gnu.org.??Be?sure?to
???????include?the?word?``sed''?somewhere?in?the?``Subject:''
???????field.
linux sed 批量替換多個文件中的字符串
?
比如,要將目錄/modules下面所有文件中的zhangsan都修改成lisi,這樣做:sed -i "s/zhangsan/lisi/g" `grep zhangsan -rl /modules`
解釋一下:
-i 表示inplace edit,就地修改文件
-r 表示搜索子目錄
-l 表示輸出匹配的文件名
這個命令組合很強大,要注意備份文件。
(1)sed 'y/1234567890/ABCDEFGHIJ/' test_sed
sed 'y/1234567890/ABCDEFGHIJ/' filename
ABCDEFGHIJ
BCDEFGHIJA
CDEFGHIJAB
DEFGHIJABC
注意變換關系是按兩個list的位置對應變換
其中:test_sed的內容是:
1234567890
2345678901
3456789012
4567890123
(2)替換每行所有匹配
sed 's/01/Ab/g' test_sed
1234567890
23456789Ab
3456789Ab2
456789Ab23
刪除:d命令
-
$ sed '2d' example-----刪除example文件的第二行。
-
$ sed '2,$d' example-----刪除example文件的第二行到末尾所有行。
-
$ sed '$d' example-----刪除example文件的最后一行。
-
$ sed '/test/'d example-----刪除example文件所有包含test的行。
-
$ sed 's/test/mytest/g' example-----在整行范圍內把test替換為mytest。如果沒有g標記,則只有每行第一個匹配的test被替換成mytest。
-
$ sed -n 's/^test/mytest/p' example-----(-n)選項和p標志一起使用表示只打印那些發生替換的行。也就是說,如果某一行開頭的test被替換成mytest,就打印它。
-
$ sed 's/^192.168.0.1/&localhost/' example-----&符號表示替換換字符串中被找到的部份。所有以192.168.0.1開頭的行都會被替換成它自已加 localhost,變成192.168.0.1localhost。
-
$ sed -n 's/\(love\)able/\1rs/p' example-----love被標記為1,所有loveable會被替換成lovers,而且替換的行會被打印出來。
-
$ sed 's#10#100#g' example-----不論什么字符,緊跟著s命令的都被認為是新的分隔符,所以,“#”在這里是分隔符,代替了默認的“/”分隔符。表示把所有10替換成100。
-
$ sed -n '/test/,/check/p' example-----所有在模板test和check所確定的范圍內的行都被打印。
-
$ sed -n '5,/^test/p' example-----打印從第五行開始到第一個包含以test開始的行之間的所有行。
-
$ sed '/test/,/check/s/$/sed test/' example-----對于模板test和west之間的行,每行的末尾用字符串sed test替換。
-
$ sed -e '1,5d' -e 's/test/check/' example-----(-e)選項允許在同一行里執行多條命令。如例子所示,第一條命令刪除1至5行,第二條命令用check替換test。命令的執 行順序對結果有影響。如果兩個命令都是替換命令,那么第一個替換命令將影響第二個替換命令的結果。
-
$ sed --expression='s/test/check/' --expression='/love/d' example-----一個比-e更好的命令是--expression。它能給sed表達式賦值。
-
$ sed '/test/r file' example-----file里的內容被讀進來,顯示在與test匹配的行后面,如果匹配多行,則file的內容將顯示在所有匹配行的下面。
-
$ sed -n '/test/w file' example-----在example中所有包含test的行都被寫入file里。
-
$ sed '/^test/a\\--->this is a example' example<-----'this is a example'被追加到以test開頭的行后面,sed要求命令a后面有一個反斜杠。
$ sed '/test/i\\
new line
-------------------------' example
如果test被匹配,則把反斜杠后面的文本插入到匹配行的前面。
-
$ sed '/test/{ n; s/aa/bb/; }' example-----如果test被匹配,則移動到匹配行的下一行,替換這一行的aa,變為bb,并打印該行,然后繼續
n/N用法說明:
sed的語法格式:
sed [option] {sed-command} {input-file}
sed在正常情況下,將處理的行讀入模式空間(pattern space),腳本中的“sed-command(sed命令)”就一條接著一條進行處理,知道腳本執行完畢。然后該行唄輸出,模式(pattern space)被清空;接著,在重復執行剛才的動作,文件中的新的一行被讀入,直到文件處理完畢。
但是,由于種種原因,如用戶希望在某個條件下,腳本中的某個命令被執行或希望模式空間(pattern space)保留,以便下一次使用,這都有可能使sed在處理文件的時候,不按照正常的流程來進行處理,這時候就需要用sed高級命令來滿足需求。
?
先來說說命令n和命令N
命令n:讀取下一行到pattern space。由于pattern space中有按照正常流程讀取的內容,使用n命令后,pattern space中又有了一行,此時,pattern space中有2行內容,但是先讀取的那一行不會被取代、覆蓋或刪除;當n命令后,還有其他命令p的時候,此時打印出的結果是n命令讀取的那一行的內容。
看下圖,你就明白了。
新建文件,其內容如下
cat 1.txt
1
2
正常sed流程
使用n命令后,
N命令:將下一行添加到pattern space中。將當前讀入行和用N命令添加的下一行看成“一行”。
新建文件1.txt
cat 1.txt
1
2
正常sed流程
使用N命令后
=========================================================變形:y命令-
$ sed '1,10y/abcde/ABCDE/' example-----把1--10行內所有abcde轉變為大寫,注意,正則表達式元字符不能使用這個命令。
-
$ sed '10q' example-----打印完第10行后,退出sed。
-
$ sed -e '/test/h' -e '$G example-----在sed處理文件的時候,每一行都被保存在一個叫模式空間的臨時緩沖區中,除非行被刪除或者輸出被取消,否則所有被處理的行都將 打印在屏幕上。接著模式空間被清空,并存入新的一行等待處理。在這個例子里,匹配test的行被找到后,將存入模式空間,h命令將其復制并存入一個稱為保 持緩存區的特殊緩沖區內。第二條語句的意思是,當到達最后一行后,G命令取出保持緩沖區的行,然后把它放回模式空間中,且追加到現在已經存在于模式空間中 的行的末尾。在這個例子中就是追加到最后一行。簡單來說,任何包含test的行都被復制并追加到該文件的末尾。
-
$ sed -e '/test/h' -e '/check/x' example -----互換模式空間和保持緩沖區的內容。也就是把包含test與check的行互換。
7. 腳本
Sed腳本是一個sed的命令清單,啟動Sed時以-f選項引導腳本文件名。Sed對于腳本中輸入的命令非常挑剔,在命令的末尾不能有任何空白或文本,如果在一行中有多個命令,要用分號分隔。以#開頭的行為注釋行,且不能跨行。
8. 小技巧
-
在sed的命令行中引用shell變量時要使用雙引號,而不是通常所用的單引號。下面是一個根據name變量的內容來刪除named.conf文件中zone段的腳本:
name='zone\ "localhost"'
sed "/$name/,/};/d" named.conf
例如:替換/home下所有文件中的www.bcak.com.cn為bcak.com.cn
sed -i "s/www.bcak.com.cn/bcak.com.cn/g" `grep www.bcak.com.cn-rl /home`
sed調試:sedsed -d -f sedfile
二、下面這條命令:
perl -pi -e 's|ABCD|Linux|g' `find ./ -type f`將調用perl執行一條替換命令,把find命令找到的所有文件內容中的ABCD替換為Linux
find ./ -type f
此命令是顯示當前目錄下所有的文件
上面的“s|ABCD|Linux| g”是perl要執行的腳本,即把所有ABCD替換為Linux
如果不寫最后的那個g,“s|ABCD|Linux| ”將只替換每一行開頭的ABCD
當編輯指令(參照[section2.2])在命令列上執行時,其前必須加上選項-e。其命令格式如下:
sed-e'編輯指令1'-e'編輯指令2'...文件檔
其中,所有編輯指令都緊接在選項-e之後,并置於兩個"'"特殊字元間。另外,命令上編輯指令的執行是由
左而右。
一般編輯指令不多時,使用者通常直接在命令上執行它們。例如,刪除yel.dat內1至10行資料,并將其
馀文字中的"yellow"字串改成"black"字串。此時,可將編輯指令直接在命令上執行,其命令如下:
sed-e'1,10d'-e's/yellow/black/g'yel.dat
在命令中,編輯指令'1,10d'(解[5])執行刪除1至10行資料;編輯指令's/yellow/black/g'(解[6]),
"yellow"字串替換(substuite)成"black"字串。
2.2sed的編輯指令
sed編輯指令的格式如下:
[address1[,address2]]function[argument]
其中,位址參數address1、address2為行數或regularexpression字串,表示所執行編輯的資料行;函數參
數function[argument]為sed的內定函數,表示執行的編輯動作。
下面兩小節,將仔細介紹位址參數的表示法與有哪些函數參數供選擇。
2.2.1位址(address)參數的表示法
實際上,位址參數表示法只是將要編輯的資料行,用它們的行數或其中的字串來代替表示它們。下面舉幾個例子
說明(指令都以函數參數d(參照[section4.2])為例):
刪除檔內第10行資料,則指令為10d。
刪除含有"man"字串的資料行時,則指令為/man/d。
刪除檔內第10行到第200行資料,則指令為10,200d。
刪除檔內第10行到含"man"字串的資料行,則指令為10,/man/d。
接下來,以位址參數的內容與其個數兩點,完整說明指令中位址參數的表示法(同樣也以函數參數d為例)。
位址參數的內容:
位址為十進位數字:此數字表示行數。當指令執行時,將對符合此行數的資料執行函數參數指示的編輯動作。例如,
刪除資料檔中的第15行資料,則指令為15d(參照[section4.2])。其馀類推,如刪除資料檔中的第m行資料,則
指令為md。
位址為regularexpression(參照[附錄A]):
當資料行中有符合regularexpression所表示的字串時,則執行函數參數指示的編輯動作。另外,在
regularexpression前後必須加上"/"。例如指令為/t.*t/d,表示刪除所有含兩"t"字母的資料行。其中,"."
表示任意字元;"*"表示其前字元可重任意次,它們結合".*"表示兩"t"字母間的任意字串。
位址參數的個數:在指令中,當沒有位址參數時,表示全部資料行執行函數參數所指示的編輯動作;當只有一位址
參數時,表示只有符合位址的資料行才編輯;當有兩個位址參數,如address1,address2時,表示對資料區執行
編輯,address1代表起始資料行,address2代表結束資料行。對於上述內容,以下面例子做具說明。
例如指令為
d
其表示刪除檔內所有資料行。
例如指令為
5d
其表示刪除檔內第五行資料。
例如指令為
1,/apple/d
其表示刪除資料區,由檔內第一行至內有"apple"字串的資料行。
例如指令為
/apple/,/orange/d
其表示刪除資料區,由檔內含有"apple"字串至含有"orange"字串的資料行
2.2.2有那些函數(function)參數
下頁表中介紹所有sed的函數參數(參照[chapter4])的功能。
函數參數功能
:label建立scriptfile內指令互相參考的位置。 相關鏈接 創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎
總結
- 上一篇: 系统运维tips 3 之 innodb
- 下一篇: 反编译工具Reflector 4.2 汉