Linux sed命令
Linux sed命令是利用script來處理文本文件。
sed可依照script的指令,來處理、編輯文本文件。
Sed主要用來自動(dòng)編輯一個(gè)或多個(gè)文件;簡化對(duì)文件的反復(fù)操作;編寫轉(zhuǎn)換程序等。
語法
sed [-hnV][-e<script>][-f<script文件>][文本文件]
參數(shù)說明:
- -e<script>或--expression=<script> 以選項(xiàng)中指定的script來處理輸入的文本文件。
- -f<script文件>或--file=<script文件> 以選項(xiàng)中指定的script文件來處理輸入的文本文件。
- -h或--help 顯示幫助。
- -n或--quiet或--silent 僅顯示script處理后的結(jié)果。
- -V或--version 顯示版本信息。
動(dòng)作說明:
- a :新增, a 的后面可以接字串,而這些字串會(huì)在新的一行出現(xiàn)(目前的下一行)~
- c :取代, c 的后面可以接字串,這些字串可以取代 n1,n2 之間的行!
- d :刪除,因?yàn)槭莿h除啊,所以 d 后面通常不接任何咚咚;
- i :插入, i 的后面可以接字串,而這些字串會(huì)在新的一行出現(xiàn)(目前的上一行);
- p :列印,亦即將某個(gè)選擇的數(shù)據(jù)印出。通常 p 會(huì)與參數(shù) sed -n 一起運(yùn)行~
- s :取代,可以直接進(jìn)行取代的工作哩!通常這個(gè) s 的動(dòng)作可以搭配正規(guī)表示法!例如 1,20s/old/new/g 就是啦!
實(shí)例
在testfile文件的第四行后添加一行,并將結(jié)果輸出到標(biāo)準(zhǔn)輸出,在命令行提示符下輸入如下命令:
sed -e 4a\newLine testfile
首先查看testfile中的內(nèi)容如下:
$ cat testfile #查看testfile 中的內(nèi)容 HELLO LINUX! Linux is a free unix-type opterating system. This is a linux testfile! Linux test
使用sed命令后,輸出結(jié)果如下:
$ sed -e 4a\newline testfile #使用sed 在第四行后添加新字符串 HELLO LINUX! #testfile文件原有的內(nèi)容 Linux is a free unix-type opterating system. This is a linux testfile! Linux test newline
以行為單位的新增/刪除
將 /etc/passwd 的內(nèi)容列出并且列印行號(hào),同時(shí),請將第 2~5 行刪除!
[root@www ~]# nl /etc/passwd | sed '2,5d' 1 root:x:0:0:root:/root:/bin/bash 6 sync:x:5:0:sync:/sbin:/bin/sync 7 shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown .....(后面省略).....
sed 的動(dòng)作為 '2,5d' ,那個(gè) d 就是刪除!因?yàn)?2-5 行給他刪除了,所以顯示的數(shù)據(jù)就沒有 2-5 行羅~ 另外,注意一下,原本應(yīng)該是要下達(dá) sed -e 才對(duì),沒有 -e 也行啦!同時(shí)也要注意的是, sed 后面接的動(dòng)作,請務(wù)必以 '' 兩個(gè)單引號(hào)括住喔!
只要?jiǎng)h除第 2 行
nl /etc/passwd | sed '2d'
要?jiǎng)h除第 3 到最后一行
nl /etc/passwd | sed '3,$d'
在第二行后(亦即是加在第三行)加上『drink tea?』字樣!
[root@www ~]# nl /etc/passwd | sed '2a drink tea' 1 root:x:0:0:root:/root:/bin/bash 2 bin:x:1:1:bin:/bin:/sbin/nologin drink tea 3 daemon:x:2:2:daemon:/sbin:/sbin/nologin .....(后面省略).....
那如果是要在第二行前
nl /etc/passwd | sed '2i drink tea'
如果是要增加兩行以上,在第二行后面加入兩行字,例如『Drink tea or .....』與『drink beer?』
[root@www ~]# nl /etc/passwd | sed '2a Drink tea or ......\ > drink beer ?' 1 root:x:0:0:root:/root:/bin/bash 2 bin:x:1:1:bin:/bin:/sbin/nologin Drink tea or ...... drink beer ? 3 daemon:x:2:2:daemon:/sbin:/sbin/nologin .....(后面省略).....
每一行之間都必須要以反斜杠『 \ 』來進(jìn)行新行的添加喔!所以,上面的例子中,我們可以發(fā)現(xiàn)在第一行的最后面就有 \ 存在。
以行為單位的替換與顯示
將第2-5行的內(nèi)容取代成為『No 2-5 number』呢?
[root@www ~]# nl /etc/passwd | sed '2,5c No 2-5 number' 1 root:x:0:0:root:/root:/bin/bash No 2-5 number 6 sync:x:5:0:sync:/sbin:/bin/sync .....(后面省略).....
透過這個(gè)方法我們就能夠?qū)?shù)據(jù)整行取代了!
僅列出 /etc/passwd 文件內(nèi)的第 5-7 行
[root@www ~]# nl /etc/passwd | sed -n '5,7p' 5 lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin 6 sync:x:5:0:sync:/sbin:/bin/sync 7 shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown </p><p> 可以透過這個(gè) sed 的以行為單位的顯示功能, 就能夠?qū)⒛骋粋€(gè)文件內(nèi)的某些行號(hào)選擇出來顯示。 </p> <h3>數(shù)據(jù)的搜尋并顯示</h3> <p>搜索 /etc/passwd有root關(guān)鍵字的行</p> <pre> nl /etc/passwd | sed '/root/p' 1 root:x:0:0:root:/root:/bin/bash 1 root:x:0:0:root:/root:/bin/bash 2 daemon:x:1:1:daemon:/usr/sbin:/bin/sh 3 bin:x:2:2:bin:/bin:/bin/sh 4 sys:x:3:3:sys:/dev:/bin/sh 5 sync:x:4:65534:sync:/bin:/bin/sync ....下面忽略
如果root找到,除了輸出所有行,還會(huì)輸出匹配行。
使用-n的時(shí)候?qū)⒅淮蛴“0宓男小?/p>
nl /etc/passwd | sed -n '/root/p' 1 root:x:0:0:root:/root:/bin/bash
數(shù)據(jù)的搜尋并刪除
刪除/etc/passwd所有包含root的行,其他行輸出
nl /etc/passwd | sed '/root/d' 2 daemon:x:1:1:daemon:/usr/sbin:/bin/sh 3 bin:x:2:2:bin:/bin:/bin/sh ....下面忽略 #第一行的匹配root已經(jīng)刪除了
數(shù)據(jù)的搜尋并執(zhí)行命令
找到匹配模式eastern的行后,搜索/etc/passwd,找到root對(duì)應(yīng)的行,執(zhí)行后面花括號(hào)中的一組命令,每個(gè)命令之間用分號(hào)分隔,這里把bash替換為blueshell,再輸出這行:
nl /etc/passwd | sed -n '/root/{s/bash/blueshell/;p}' 1 root:x:0:0:root:/root:/bin/blueshell
最后的q是退出。
數(shù)據(jù)的搜尋并替換
除了整行的處理模式之外, sed 還可以用行為單位進(jìn)行部分?jǐn)?shù)據(jù)的搜尋并取代。基本上 sed 的搜尋與替代的與 vi 相當(dāng)?shù)念愃?!他有點(diǎn)像這樣:
sed 's/要被取代的字串/新的字串/g'
先觀察原始信息,利用 /sbin/ifconfig 查詢 IP
[root@www ~]# /sbin/ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:90:CC:A6:34:84 inet addr:192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0 inet6 addr: fe80::290:ccff:fea6:3484/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 .....(以下省略).....
本機(jī)的ip是192.168.1.100。
將 IP 前面的部分予以刪除
[root@www ~]# /sbin/ifconfig eth0 | grep 'inet addr' | sed 's/^.*addr://g' 192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0
接下來則是刪除后續(xù)的部分,亦即: 192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0
將 IP 后面的部分予以刪除
[root@www ~]# /sbin/ifconfig eth0 | grep 'inet addr' | sed 's/^.*addr://g' | sed 's/Bcast.*$//g' 192.168.1.100
多點(diǎn)編輯
一條sed命令,刪除/etc/passwd第三行到末尾的數(shù)據(jù),并把bash替換為blueshell
nl /etc/passwd | sed -e '3,$d' -e 's/bash/blueshell/' 1 root:x:0:0:root:/root:/bin/blueshell 2 daemon:x:1:1:daemon:/usr/sbin:/bin/sh
-e表示多點(diǎn)編輯,第一個(gè)編輯命令刪除/etc/passwd第三行到末尾的數(shù)據(jù),第二條命令搜索bash替換為blueshell。
直接修改文件內(nèi)容(危險(xiǎn)動(dòng)作)
sed 可以直接修改文件的內(nèi)容,不必使用管道命令或數(shù)據(jù)流重導(dǎo)向! 不過,由於這個(gè)動(dòng)作會(huì)直接修改到原始的文件,所以請你千萬不要隨便拿系統(tǒng)配置來測試! 我們還是使用下載的 regular_express.txt 文件來測試看看吧!
利用 sed 將 regular_express.txt 內(nèi)每一行結(jié)尾若為 . 則換成 !
[root@www ~]# sed -i 's/\.$/\!/g' regular_express.txt
利用 sed 直接在 regular_express.txt 最后一行加入『# This is a test』
[root@www ~]# sed -i '$a # This is a test' regular_express.txt
由於 $ 代表的是最后一行,而 a 的動(dòng)作是新增,因此該文件最后新增『# This is a test』!
sed 的『 -i 』選項(xiàng)可以直接修改文件內(nèi)容,這功能非常有幫助!舉例來說,如果你有一個(gè) 100 萬行的文件,你要在第 100 行加某些文字,此時(shí)使用 vim 可能會(huì)瘋掉!因?yàn)槲募罅?!那怎辦?就利用 sed 啊!透過 sed 直接修改/取代的功能,你甚至不需要使用 vim 去修訂!
更多建議: