sed編輯器簡(jiǎn)介
sed是linux下一種常用的非交互式編輯器厅各,不同于常用的交互式的vim編輯器确沸,我們只能在command line輸入命令并得到輸出。如果不對(duì)結(jié)果進(jìn)行重定向怎虫,sed命令一般不會(huì)對(duì)文件造成修改喊熟。
sed實(shí)現(xiàn)原理
如圖所示,sed在得到文件后达皿,會(huì)將文件逐行進(jìn)行處理天吓,且把處理中的行保存在臨時(shí)緩存中贿肩,當(dāng)sed處理完最后一行后,會(huì)將結(jié)果由緩存輸出至屏幕龄寞,且因?yàn)槭窃诰彺嬷刑幚硖妫瑂ed并不會(huì)對(duì)源文件造成任何的破壞。
sed常用參數(shù)與命令
sed命令使用格式為: sed [參數(shù)] '命令' 處理文本
如: sed -i 's#hello#world#g' test.txt
參數(shù) | 說(shuō)明 |
---|---|
-n | 取消默認(rèn)輸出物邑,只打印被sed處理后的行 |
-e | 多重編輯溜哮,且命令順序會(huì)影響輸出結(jié)果 |
-f | 指定一個(gè)sed腳本文件到命令行執(zhí)行 |
-r | sed使用擴(kuò)展正則 |
-i | 直接修改文檔讀取內(nèi)容,不在屏幕上輸出 |
命令 | 說(shuō)明 |
---|---|
a\ | 追加色解,在當(dāng)前行后添加一行或多行 |
c\ | 用新文本修改(替換)當(dāng)前行中的文本 |
d | 刪除行 |
i\ | 在當(dāng)前行之前插入文本 |
l | 列出非打印字符 |
p | 打印行 |
n | 讀取下一輸入行茂嗓,并從下一條命令而不是第一條命令開(kāi)始處理 |
q | 結(jié)束或退出sed |
r | 從文件中讀取輸入行 |
! | 對(duì)所選行以外的所有行應(yīng)用命令 |
s | 用一個(gè)字符替換另一個(gè) |
sed命令常用使用方法
sed一般用于行處理,可以配合各類參數(shù)科阎,操作命令與正則表達(dá)式進(jìn)行復(fù)雜的文本處理述吸。
例:當(dāng)前有一個(gè)文本,包含了我們care的字段‘bingo’
[root@localhost ~]# cat test.txt
hello
world
hello bingo
world bingoes
bing1
not bingo tho
a test that is not exist
this is a test about bingossssss
sed bingo
go
打勇啾俊:p
p是最常用的命令之一蝌矛,通print,可以顯示當(dāng)前sed緩存中的內(nèi)容错英,參數(shù)-n可以取消默認(rèn)打印操作入撒,當(dāng)-n與p同時(shí)使用時(shí),即可打印指定的內(nèi)容走趋。
[root@localhost ~]# sed -n '/bingo/p' test.txt
hello bingo
world bingoes
not bingo tho
this is a test about bingossssss
sed bingo
此操作匹配了test.txt文本中的bingo衅金,當(dāng)一行有'bingo'時(shí),打印該行簿煌。
刪除:d
d命令用于刪除該行氮唯,sed先將此行復(fù)制到緩存區(qū)中,然后執(zhí)行sed刪除命令姨伟,最后將緩存區(qū)中的結(jié)果輸出至屏幕惩琉。
[root@localhost ~]# sed '/bingo/d' test.txt
hello
world
bing1
a test that is not exist
go
屏幕得到的結(jié)果為不包含bingo的行。
注意:此命令并不會(huì)實(shí)際刪除包含bingo字段的行夺荒。
替換:s
s命令是替換命令瞒渠,可以替換并取代文件中的文本,s后的斜杠中的文本可以是正則表達(dá)式技扼,后面跟著需要替換的文本伍玖。如果在后面增加g(global)命令代表進(jìn)行全局替換。
[root@localhost ~]# sed 's/bingo/bango/g' test.txt
hello
world
hello bango
world bangoes
bing1
not bango tho
a test that is not exist
this is a test about bangossssss
sed bango
go
注意:此命令也不會(huì)對(duì)實(shí)際文件造成修改剿吻。如果想要修改窍箍,可加'-i'參數(shù)。如sed -i 's#bingo#bango#g' test.txt, 此命令就實(shí)際對(duì)test.txt中的文本形成了替換,且修改結(jié)果不會(huì)輸出至屏幕椰棘。
指定行:逗號(hào)
sed可以選取從某行開(kāi)始到某行結(jié)束的范圍纺棺。行的范圍可以為行號(hào)、正則表達(dá)式邪狞、或者兩者的結(jié)合祷蝌。
(1)行號(hào):
[root@localhost ~]# sed -n '1,4p' test.txt
hello
world
hello bingo
world bingoes
(2)正則表達(dá)式:
[root@localhost ~]# sed '/hello/,/sed bingo/s/$/**sub**/' test.txt
hello**sub**
world**sub**
hello bingo**sub**
world bingoes**sub**
bing1**sub**
not bingo tho**sub**
a test that is not exist**sub**
this is a test about bingossssss**sub**
sed bingo**sub**
go
這條命令的意思是從hello行開(kāi)始到sed bingo行結(jié)束,在每行的結(jié)尾($)替換為sub帆卓。
追加:a命令
a(append)命令為追加巨朦,可以追加新文本于選取行的后面。
[root@localhost ~]# sed '/^hello/a ***appendtext***' test.txt
hello
***appendtext***
world
hello bingo
***appendtext***
world bingoes
bing1
not bingo tho
a test that is not exist
this is a test about bingossssss
sed bingo
go
插入:i命令
i(insert)命令類似于追加鳞疲,可以在選取行前插入文本罪郊。
[root@localhost ~]# sed '/^hello/i ***inserttext***' test.txt
***inserttext***
hello
world
***inserttext***
hello bingo
world bingoes
bing1
not bingo tho
a test that is not exist
this is a test about bingossssss
sed bingo
go
sed通常用于文本文件的行處理,以上只是介紹了幾種常用的sed使用方法尚洽,具體的其它方法詳見(jiàn)sed, a stream editor悔橄。