溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Linux系統(tǒng)sed命令怎么使用

發(fā)布時(shí)間:2022-01-21 12:48:46 來(lái)源:億速云 閱讀:152 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要講解了“Linux系統(tǒng)sed命令怎么使用”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Linux系統(tǒng)sed命令怎么使用”吧!

Linux系統(tǒng)sed命令怎么使用

我們知道,Vim 采用的是交互式文本編輯模式,你可以用鍵盤(pán)命令來(lái)交互性地插入、刪除或替換數(shù)據(jù)中的文本。但本節(jié)要講的 sed 命令不同,它采用的是流編輯模式,最明顯的特點(diǎn)是,在 sed 處理數(shù)據(jù)之前,需要預(yù)先提供一組規(guī)則,sed 會(huì)按照此規(guī)則來(lái)編輯數(shù)據(jù)。

sed命令的使用規(guī)則

命令格式如下:

sed [option] 'command' input_file

其中option是可選的,常用的option有如下幾種:

-n 使用安靜(silent)模式,只列出經(jīng)過(guò)sed特殊處理的那一行(或者動(dòng)作)內(nèi)容;
-e 直接在指令列模式上進(jìn)行 sed 的動(dòng)作編輯;
-f 直接將 sed 的動(dòng)作寫(xiě)在一個(gè)文件內(nèi), -f filename 則可以執(zhí)行filename內(nèi)的sed命令;
-r 讓sed命令支持?jǐn)U展的正則表達(dá)式(默認(rèn)是基礎(chǔ)正則表達(dá)式);
-i 直接修改讀取的文件內(nèi)容,而不是由屏幕輸出;

常用的命令有以下幾種:

a \: 即append追加字符串,可將其后的字符加在所選擇內(nèi)容的后面
c \: 取代/替換字符串,可將其后內(nèi)容替換至所選內(nèi)容
d  : 即delete刪除,該命令會(huì)將當(dāng)前選中的行刪除
i \: 即insert插入字符串,可將其后內(nèi)容插入至所選內(nèi)容前
p  : print即打印,該命令會(huì)打印當(dāng)前選擇的行到屏幕上
s  : 替換,通常s命令的用法是這樣的:1,2s/old/new/g,將old字符串替換成new字符串

命令示例

假設(shè)有一個(gè)本地文件test.txt,文件內(nèi)容如下:

[root@linuxprobe ~]$ cat test.txt
this is first line
this is second line
this is third line
this is fourth line
this fifth line
happy everyday
end

本節(jié)將使用該文件詳細(xì)演示每一個(gè)命令的用法。

a命令

[root@linuxprobe ~]$ sed '1a \add one' test.txt
this is first line
add one
this is secondline
this is third line
this is fourth line
this is fifth line
happy everyday
end

本例命令部分中的1表示第一行,同樣的第二行寫(xiě)成2,第一行到第三行寫(xiě)成1,3,用表示最后一行,比如表示第二行到最后一行中間所有的行(包含第二行和最后一行)。
本例的作用是在第一行之后增加字符串”add one”,從輸出可以看到具體效果。

[root@linuxprobe ~]$ sed '1,$a \add one' test.txt
this 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
happy everyday
add one
end
add one

本例表示在第一行和最后一行所有的行后面都加上”add one”字符串,從輸出可以看到效果。

[root@linuxprobe ~]$ sed '/first/a \add one' test.txt
this is first line
add one
this is secondline
this is third line
this is fourth line
this is fifth line
happy everyday
end

本例表示在包含”first”字符串的行的后面加上字符串”add one”,從輸出可以看到第一行包含first,所以第一行之后增加了”add one”

[root@linuxprobe ~]$ sed '/^ha.*day$/a \add one' test.txt
this is first line
this is secondline
this is third line
this is fourth line
this is fifth line
happy everyday
add one
end

本例使用正則表達(dá)式匹配行,^ha.*day$表示以ha開(kāi)頭,以day結(jié)尾的行,則可以匹配到文件的”happy everyday”這樣,所以在該行后面增加了”add one”字符串。

i命令

i命令使用方法和a命令一樣的,只不過(guò)是在匹配的行的前面插入字符串,所以直接將上面a命令的示例的a替換成i即可,在此就不啰嗦了。

c命令

[root@linuxprobe ~]$ sed '$c \add one' test.txt
this is first line
this is secondline
this is third line
this is fourth line
this is     fifth line
happy everyday
add one

本例表示將最后一行替換成字符串”add one”,從輸出可以看到效果。

[root@linuxprobe ~]$ sed '4,$c \add one' test.txt
this is first line
this is secondline
this is third line
add one

本例將第四行到最后一行的內(nèi)容替換成字符串”add one”。

[root@linuxprobe ~]$ sed '/^ha.*day$/c \replace line' test.txt
this is first line
this is secondline
this is third line
this is fourth line
this is fifth line
replace line
end

本例將以ha開(kāi)頭,以day結(jié)尾的行替換成”replace line”。

d命令

[root@linuxprobe ~]$ sed '/^ha.*day$/d' test.txt
this isfirst line
this issecond line
this isthird line
this isfourth line
this isfifth line
end

本例刪除以ha開(kāi)頭,以day結(jié)尾的行。

[root@linuxprobe ~]$ sed '4,$d' test.txt
thisis first line
thisis second line
thisis third line

本例刪除第四行到最后一行中的內(nèi)容。

p命令

[root@linuxprobe ~]$ sed -n '4,$p' test.txt
thisis fourth line
thisis fifth line
happy everyday
end

本例在屏幕上打印第四行到最后一行的內(nèi)容,p命令一般和-n選項(xiàng)一起使用。

[root@linuxprobe ~]$ sed -n '/^ha.*day$/p' test.txt
happy everyday

本例打印以ha開(kāi)始,以day結(jié)尾的行。

s命令

實(shí)際運(yùn)用中s命令式最常使用到的。

[root@linuxprobe ~]$ sed 's/line/text/g' test.txt
this isfirst text
this issecond text
this isthird text
this isfourth text
this isfifth text
happy everyday
end

本例將文件中的所有l(wèi)ine替換成text,最后的g是global的意思,也就是全局替換,如果不加g,則只會(huì)替換本行的第一個(gè)line。

[root@linuxprobe ~]$ sed '/^ha.*day$/s/happy/very happy/g' test.txt
this isfirst line
this issecond line
this isthird line
this isfourth line
this isfifth line
very happy everyday
end

本例首先匹配以ha開(kāi)始,以day結(jié)尾的行,本例中匹配到的行是”happy everyday”這樣,然后再將該行中的happy替換成very happy。

[root@linuxprobe ~]$ sed 's/\(.*\)line$/\1/g' test.txt
thisis first
thisis second
thisis third
thisis fourth
thisis fifth
happy everyday
end

這個(gè)例子有點(diǎn)復(fù)雜,先分解一下。首先s命令的模式是s/old/new/g這樣的,所以本例的old部分即(.*)line命令中使用包裹的內(nèi)容表示正則表達(dá)式的第部分,序號(hào)從開(kāi)始計(jì)算,本例中只有一個(gè)所以表示正則表達(dá)式的第一部分,這部分匹配任意字符串,所以匹配的就是以line結(jié)尾的任何行。然后將匹配到的行替換成正則表達(dá)式的第一部分(本例中相當(dāng)于刪除line部分),使用\1表示匹配到的第一部分,同樣\2表示第二部分,\3表示第三部分,可以依次這樣引用。比如下面的例子:

[root@linuxprobe ~]$ sed 's/\(.*\)is\(.*\)line/\1\2/g' test.txt
this  first
this  second
this  third
this  fourth
this  fifth
happy everyday
end

正則表達(dá)式中is兩邊的部分可以用\1和\2表示,該例子的作用其實(shí)就是刪除中間部分的is。

感謝各位的閱讀,以上就是“Linux系統(tǒng)sed命令怎么使用”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Linux系統(tǒng)sed命令怎么使用這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI