sed(流處理編輯器),處理文本的過程以下:正則表達式
一、從文本或者管道中讀入一行內容到模式空間(臨時緩衝區)shell
二、使用sed命令處理,重複第1步,直到文件處理完畢bash
三、輸出到屏幕app
注意兩點:編輯器
一、sed一次處理一行的內容測試
二、sed默認的不改變文件內容ui
[root@localhost test]# cat -n data.txt 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch
命令行格式:將包含sed的命令寫在命令行中執行命令行
$ sed [options] 'command' files
腳本格式:將sed的命令寫在一個腳本中,而後執行的時候,指定sed腳本的路徑便可orm
$ sed -f scriptfile files
上面這兩個命令中,files都是要進行處理的文件。blog
$sed [options] 'command' files
options可使用下面這幾個值:
-e:能夠指定多個command
-n:與p(print)命令合用時,表示只顯示被選中的行,而不是顯示全部的行,而後被選中的行會顯示兩次。
-i:將sed的操做結果更新到文件中,由於默認的是不會操做文件自己的。
command:行定位(正則)+ sed命令,首先會經過正則行定位,選中要進行操做的行,而後執行sed命令
一、n; 選中1行,n表示行號
二、/pattern/ 使用正則表達式,注意要包含在/..../之間
[root@localhost test]# #打印第5行 [root@localhost test]# sed -n "5 p" data.txt Maecheal 男 30 Washington America [root@localhost test]# #打印匹配"China"的記錄 [root@localhost test]# sed -n "/china/ p" data.txt [root@localhost test]# sed -n "/China/ p" data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China
一、x,y; 選中行號在x~y之間的行
二、/pattern1/, /pattern2/ 選擇匹配兩個正則表達式之間的行
[root@localhost test]# #打印第3~6行 [root@localhost test]# cat -n data.txt | sed -n "3,6 p" 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan [root@localhost test]# #打印「Jane」的行,到「貝爺」之間的行 [root@localhost test]# sed -n "/Jane/, /貝爺/ p" data.txt Jane 女 29 Los Angeles America Maecheal 男 30 Washington America 山本 男 25 Nagasaki Japan 村上春樹 男 40 Hiroshima Japan 貝爺 男 35 Paris Franch
在後面加 ! 便可
[root@localhost test]# #打印除了第4行之外的全部行 [root@localhost test]# cat -n data.txt | sed -n "4! p" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #打印除3-7行以外的行 [root@localhost test]# cat -n data.txt | sed -n "3,7! p" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 8 貝爺 男 35 Paris Franch
使用x~y格式,首先打印第x行,而後每一個y行,就打印一次
[root@localhost test]# #打印第3行,以後,每隔2行,就打印一次 [root@localhost test]# cat -n data.txt | sed -n "3~2 p" 3 花花 女 30 HeBei China 5 Maecheal 男 30 Washington America 7 村上春樹 男 40 Hiroshima Japan
sed有幾個基本的操做命令,分別是下面幾個:
一、-a (append,添加,在行後追加)
二、-i(insert,插入,在行前插入)
三、-d(delete,刪除行)
四、-c(chage,替換)
五、-s(subsitute,替換)
[root@localhost test]# #在第3行後面增長一行「---------------」 [root@localhost test]# cat -n data.txt | sed "3a -------------" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China ------------- 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #在3~5行的每一行後面加一行「==========」 [root@localhost test]# cat -n data.txt | sed "3,5a ==========" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China ========== 4 Jane 女 29 Los Angeles America ========== 5 Maecheal 男 30 Washington America ========== 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #在每一行後面增長一行「===========」 [root@localhost test]# cat -n data.txt | sed "a ==========" 1 小紅 女 20 BeiJing China ========== 2 小明 男 22 ChongQing China ========== 3 花花 女 30 HeBei China ========== 4 Jane 女 29 Los Angeles America ========== 5 Maecheal 男 30 Washington America ========== 6 山本 男 25 Nagasaki Japan ========== 7 村上春樹 男 40 Hiroshima Japan ========== 8 貝爺 男 35 Paris Franch ========== [root@localhost test]# #在行末增長一行「-------------------」 [root@localhost test]# sed '$a -------------------------' data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China Jane 女 29 Los Angeles America Maecheal 男 30 Washington America 山本 男 25 Nagasaki Japan 村上春樹 男 40 Hiroshima Japan 貝爺 男 35 Paris Franch -------------------------
-i插入行和增長行的操做同樣,區別是a是在行以後增長,i是在行以前插入
[root@localhost test]# #在第3行以前增長一行「---------------」 [root@localhost test]# cat -n data.txt | sed "3i --------------" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China -------------- 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #在第3~5行的每一行以前插入一行"===========" [root@localhost test]# cat -n data.txt | sed "3,5i ===========" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China =========== 3 花花 女 30 HeBei China =========== 4 Jane 女 29 Los Angeles America =========== 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #在每一行以前插入一行"===========" [root@localhost test]# cat -n data.txt | sed "i ===========" =========== 1 小紅 女 20 BeiJing China =========== 2 小明 男 22 ChongQing China =========== 3 花花 女 30 HeBei China =========== 4 Jane 女 29 Los Angeles America =========== 5 Maecheal 男 30 Washington America =========== 6 山本 男 25 Nagasaki Japan =========== 7 村上春樹 男 40 Hiroshima Japan =========== 8 貝爺 男 35 Paris Franch
替換行,是指,將指定行,整行內容都替換爲指定內容,注意-s是指替換行中的一部份內容。
注意,區間替換的時候,是總體替換,而不是逐行替換。
[root@localhost test]# #將第2行替換爲"hello shell" [root@localhost test]# cat -n data.txt | sed "2c hello world" 1 小紅 女 20 BeiJing China hello world 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #嘗試將第2~5行的每一行都替換爲"hello world",可是實際操做後會將2-5行總體替換 [root@localhost test]# cat -n data.txt | sed "2,5c hello world" 1 小紅 女 20 BeiJing China hello world 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #將每一行都替換爲「hello world」 [root@localhost test]# cat -n data.txt | sed "c hello world" hello world hello world hello world hello world hello world hello world hello world hello world
[root@localhost test]# #刪除第4行 [root@localhost test]# cat -n data.txt | sed "4d" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #刪除第4-6行 [root@localhost test]# cat -n data.txt | sed "4,6d" 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# #刪除全部行(無心義) [root@localhost test]# cat -n data.txt | sed "d"
[root@localhost test]# #將字符a替換爲X [root@localhost test]# sed 's/a/X/' data.txt 小紅 女 20 BeiJing ChinX 小明 男 22 ChongQing ChinX 花花 女 30 HeBei ChinX JXne 女 29 Los Angeles America MXecheal 男 30 Washington America 山本 男 25 NXgasaki Japan 村上春樹 男 40 HiroshimX Japan 貝爺 男 35 PXris Franch
注意,在替換的時候,只替換了一次,即只替換第一個匹配的內容。若是要將知足條件的內容都替換,就須要加上g
[root@localhost test]# sed 's/a/X/g' data.txt 小紅 女 20 BeiJing ChinX 小明 男 22 ChongQing ChinX 花花 女 30 HeBei ChinX JXne 女 29 Los Angeles AmericX MXecheXl 男 30 WXshington AmericX 山本 男 25 NXgXsXki JXpXn 村上春樹 男 40 HiroshimX JXpXn 貝爺 男 35 PXris FrXnch
一、在data文件的第8行下面增長一行「hello world」,而且hello world前面要有4個空格
[root@localhost test]# #測試1,直接輸入4個空格,失敗 [root@localhost test]# sed '8 a hello world' data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China Jane 女 29 Los Angeles America Maecheal 男 30 Washington America 山本 男 25 Nagasaki Japan 村上春樹 男 40 Hiroshima Japan 貝爺 男 35 Paris Franch hello world [root@localhost test]# #測試2,使用反斜線轉義,成功 [root@localhost test]# sed '8 a \ hello world' data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China Jane 女 29 Los Angeles America Maecheal 男 30 Washington America 山本 男 25 Nagasaki Japan 村上春樹 男 40 Hiroshima Japan 貝爺 男 35 Paris Franch hello world
二、刪除demo.txt文件中的空行
[root@localhost test]# cat demo.txt 111111 22222 333333 44444 [root@localhost test]# sed '/^$/ d' demo.txt 111111 22222 333333 44444
三、獲取eth0網卡的ip
[root@localhost test]# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:0C:29:21:0C:0F inet addr:192.168.228.153 Bcast:192.168.228.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:fe21:c0f/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:27644 errors:0 dropped:0 overruns:0 frame:0 TX packets:14175 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:22947297 (21.8 MiB) TX bytes:1135056 (1.0 MiB) [root@localhost test]# ifconfig eth0 | sed -n '/inet addr:/ p' inet addr:192.168.228.153 Bcast:192.168.228.255 Mask:255.255.255.0 [root@localhost test]# ifconfig eth0 | sed -n '/inet addr:/ p' | sed 's/.*inet addr://' 192.168.228.153 Bcast:192.168.228.255 Mask:255.255.255.0 [root@localhost test]# ifconfig eth0 | sed -n '/inet addr:/ p' | sed 's/.*inet addr://' | sed 's/B.*$//' 192.168.228.153
包括如下內容:
一、{command1; command2; command 3}多個sed命令,使用「;」分開
二、n表示跳1行
三、&表示前面已經匹配的字符串內容,反向引用,不用再寫一次正則表達式
使用花括號{ }將多個sed命令包含在一塊兒,多個sed之間用;分開
[root@localhost test]# cat -n data.txt 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# cat -n data.txt | sed '{3,5 d; s/China/Chinese/}' 1 小紅 女 20 BeiJing Chinese 2 小明 男 22 ChongQing Chinese 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch
打印奇數行和偶數行
[root@localhost test]# #打印奇數行 [root@localhost test]# cat -n data.txt | sed -n '1~2 p' 1 小紅 女 20 BeiJing China 3 花花 女 30 HeBei China 5 Maecheal 男 30 Washington America 7 村上春樹 男 40 Hiroshima Japan [root@localhost test]# cat -n data.txt | sed -n '{p; n}' 1 小紅 女 20 BeiJing China 3 花花 女 30 HeBei China 5 Maecheal 男 30 Washington America 7 村上春樹 男 40 Hiroshima Japan [root@localhost test]# [root@localhost test]# #打印偶數行 [root@localhost test]# cat -n data.txt | sed -n '2~2 p' 2 小明 男 22 ChongQing China 4 Jane 女 29 Los Angeles America 6 山本 男 25 Nagasaki Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# cat -n data.txt | sed -n '{n; p}' 2 小明 男 22 ChongQing China 4 Jane 女 29 Los Angeles America 6 山本 男 25 Nagasaki Japan 8 貝爺 男 35 Paris Franch
可使用多個n來進行跳過
&表示前面已經匹配的字符串內容,反向引用,不用再寫一次正則表達式
在男或者女以前加一個gender單詞
[root@localhost test]# cat -n data.txt | sed 's/[男|女]/gender:[男|女]/' 1 小紅 gender:[男|女] 20 BeiJing China 2 小明 gender:[男|女] 22 ChongQing China 3 花花 gender:[男|女] 30 HeBei China 4 Jane gender:[男|女] 29 Los Angeles America 5 Maecheal gender:[男|女] 30 Washington America 6 山本 gender:[男|女] 25 Nagasaki Japan 7 村上春樹 gender:[男|女] 40 Hiroshima Japan 8 貝爺 gender:[男|女] 35 Paris Franch [root@localhost test]# cat -n data.txt | sed 's/[男|女]/gender:&/' 1 小紅 gender:女 20 BeiJing China 2 小明 gender:男 22 ChongQing China 3 花花 gender:女 30 HeBei China 4 Jane gender:女 29 Los Angeles America 5 Maecheal gender:男 30 Washington America 6 山本 gender:男 25 Nagasaki Japan 7 村上春樹 gender:男 40 Hiroshima Japan 8 貝爺 gender:男 35 Paris Franch
案例1:將data.txt中的全部字母都變爲大寫
[root@localhost test]# cat -n data.txt 1 小紅 女 20 BeiJing China 2 小明 男 22 ChongQing China 3 花花 女 30 HeBei China 4 Jane 女 29 Los Angeles America 5 Maecheal 男 30 Washington America 6 山本 男 25 Nagasaki Japan 7 村上春樹 男 40 Hiroshima Japan 8 貝爺 男 35 Paris Franch [root@localhost test]# cat -n data.txt | sed 's/[A-Z]/\l&/g' 1 小紅 女 20 beijing china 2 小明 男 22 chongqing china 3 花花 女 30 hebei china 4 jane 女 29 los angeles america 5 maecheal 男 30 washington america 6 山本 男 25 nagasaki japan 7 村上春樹 男 40 hiroshima japan 8 貝爺 男 35 paris franch [root@localhost test]# cat -n data.txt | sed 's/[a-z]/\u&/g' 1 小紅 女 20 BEIJING CHINA 2 小明 男 22 CHONGQING CHINA 3 花花 女 30 HEBEI CHINA 4 JANE 女 29 LOS ANGELES AMERICA 5 MAECHEAL 男 30 WASHINGTON AMERICA 6 山本 男 25 NAGASAKI JAPAN 7 村上春樹 男 40 HIROSHIMA JAPAN 8 貝爺 男 35 PARIS FRANCH
[root@localhost test]# cat A.txt 111111 222222 333333 [root@localhost test]# cat B.txt AAAAAAA BBBBBBB CCCCCCC
將A.txt中的內容,插入到B.txt的第2行後面
[root@localhost test]# #將A.txt中的內容插入到B.txt中的第2行後面 [root@localhost test]# sed '2 r A.txt' B.txt AAAAAAA BBBBBBB 111111 222222 333333 CCCCCCC [root@localhost test]# #將A.txt中的內容插入到B.txt中包含CCCCCC的行後面 [root@localhost test]# sed '/CCCCCC/ r A.txt' B.txt AAAAAAA BBBBBBB CCCCCCC 111111 222222 333333 [root@localhost test]# #將A.txt中的內容插入B.txt中每一行的後面 [root@localhost test]# sed 'r A.txt' B.txt AAAAAAA 111111 222222 333333 BBBBBBB 111111 222222 333333 CCCCCCC 111111 222222 333333
對於A.txt中選中的行,保存到文件B.txt中,會首先清空B.txt的內容,而後將選中的行拷貝出來,再保存到B.txt中。
[root@localhost test]# #將A.txt中的2-4行,寫到C.txt中,注意會先清空C.txt [root@localhost test]# sed '2,4 w C.txt' A.txt 111111 222222 333333 [root@localhost test]# cat C.txt 222222 333333
sed的處理流程是:從文件中讀入一行,而後sed處理一行,一直到文件結束爲止。
使用q,可讓sed提早結束,不用讀到文件結束。
[root@localhost test]# #打印前3行 [root@localhost test]# sed '3 q' data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China [root@localhost test]# [root@localhost test]# #找到第1個Japan [root@localhost test]# sed '/Japan/ q' data.txt 小紅 女 20 BeiJing China 小明 男 22 ChongQing China 花花 女 30 HeBei China Jane 女 29 Los Angeles America Maecheal 男 30 Washington America 山本 男 25 Nagasaki Japan
使用\1,\2,\3....\n表示前面的第n個子表達式
獲取全部用戶,以及用戶的UID和GID
[root@localhost test]# head -5 /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin [root@localhost test]# head -5 /etc/passwd | sed 's/^\([a-zA-Z_-]\+\):x:\([0-9]\+\):\([0-9]\+\):.*/USER:\1 \t UID:\2 GID:\3/' USER:root UID:0 GID:0 USER:bin UID:1 GID:1 USER:daemon UID:2 GID:2 USER:adm UID:3 GID:4 USER:lp UID:4 GID:7
獲取eth0的ip地址
[root@localhost test]# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:0C:29:21:0C:0F inet addr:192.168.228.153 Bcast:192.168.228.255 Mask:255.255.255.0 inet6 addr: fe80::20c:29ff:fe21:c0f/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:34864 errors:0 dropped:0 overruns:0 frame:0 TX packets:17848 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:23505959 (22.4 MiB) TX bytes:1547380 (1.4 MiB) [root@localhost test]# ifconfig eth0 | sed -n '/inet addr/ p' | sed 's/.*inet addr:\([0-9.]\+\).*/\1/' 192.168.228.153