首页 > 代码库 > Linux之sed

Linux之sed

sed是stream editor(流式编辑器)的缩写,它可以对文本流、指定文件集或标准输入进行文本编辑。功能非常强大。

sed命令的基本模式是:

sed  [-参数]  命令  文本

 

1. sed两大原则

sed命令总是以单个字母开头。比如

[rte@deldir]$echo "hello123" | sed s/hello/HELLO/ #把hello用HELLO替换HELLO123

上例中s是替换命令,s后面是分割符号,啥都行(一般用‘/’),比如上例子与下面命令等价:

[rte@deldir]$echo "hello123" | sed s*hello*HELLO*HELLO123

sed多数命令允许在前面加个地址。该地址用于指定输入流的哪一行被编辑,如果省略,默认是对所有行都进行编辑。例如

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$cat del2 | sed 2s/hello/HELLO/   #替换第2行hello1HELLO2 hellohello3 [rte@deldir]$cat del2 | sed 2,3s/hello/HELLO/   #替换第2到3行hello1HELLO2 helloHELLO3 [rte@deldir]$cat del2 | sed s/hello/HELLO/      #替换所有行(没有地址,就是默认)HELLO1HELLO2 helloHELLO3

 

2. sed基本编辑命令

命令功能简称功能描述
a在当前行后附加文本
d删除当前行
p打印当前行。默认是把所有的行都打印出来,并把符合条件的行也打印出来。要是屏蔽默认,加参数-n
i在当前行前插入文本
s/regex/replacement/把regex用replacement替换
y/set1/set2把set1中的字符用对应的set2中的字符替换(必须保证两个集合的字符个数相等)
= 输出当前行的行号
q 处理完当前行后退出sed
Q 直接推出sed

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$sed 1a HELLO del2                #在第一行后增加一行,内容是“HELLO”hello1HELLOhello2 hellohello3 [rte@deldir]$sed 2,3a HELLO del2              #从第2到3行,每行后面添加一行,内容是“HELLO”hello1hello2 helloHELLOhello3 HELLO[rte@deldir]$sed 2,3a HELLO\nHELLOTWO del2    #从第2到3行,每行增添一些内容“HELLO\nHELLO”,注意增加的里面有回车hello1hello2 helloHELLOHELLOTWOhello3 HELLOHELLOTWO

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$sed 1d del2                   #删除第一行hello2 hellohello3 [rte@deldir]$sed $d del2                   #删除最后一行hello1hello2 hello[rte@deldir]$sed 2,3d del2                 #删除第2到3行hello1

[rte@deldir]$cat del2hello1hello2 hellohello3 
[rte@deldir]$
sed 2p del2 #查看第2行,没有-n参数,原来的数据也会输出hello1hello2 hellohello2 hellohello3
[rte@deldir]$
sed -n 2p del2 #查看第2行hello2 hello
[rte@deldir]$
sed -n 2,$p del2 #查看2到最后一行hello2 hellohello3

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$cat del2 | sed iMM:           #所有的行插入‘iMM:’MM:hello1MM:hello2 helloMM:hello3 [rte@deldir]$cat del2 | sed 2,3iMM:  #从第23行插入‘iMM:’hello1MM:hello2 helloMM:hello3

换——字符串替换

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$sed 1,2s/hello/NO/ del2       #第1到2行hello替换成NO(一行只替换一次)NO1NO2 hellohello3 [rte@deldir]$sed 1,2s/hello/NO/g del2      #地1到2行的hello全部替换成NO(参数g表示替换全部)NO1NO2 NOhello3 [rte@deldir]$sed 1,2c NO del2              #把1到2行用NO替换NOhello3[rte@deldir]$sed s/hello/HELLO/ del2       #把所有行的“hello”替换成“HELLO”,等价与sed ‘1,$s/hello/HELLO/‘ del2HELLO1 HELLO2 helloHELLO3

换——哈希替换

[rte@deldir]$cat del2 hello1hello2 hellohello3 [rte@deldir]$cat del2 | sed y/hel/HEL/ #把‘hel’对应的‘HEL’HELLo1HELLo2 HELLoHELLo3

其他

[rte@deldir]$cat del2hello1hello2 hellohello3[rte@deldir]$cat del2 | sed = #输出当前行的行号1hello12hello2 hello3hello3 [rte@deldir]$cat del2 | sed q #输出当前行就结束sedhello1[rte@deldir]$cat del2 | sed Q #立马结束sed

 

3. sed常用参数

参数参数含义
-n安静模式,不加-n会把输入流都输出到终端,加上后只输出符合条件的
-e多点
-f-f filename 执行filename文件里的sed命令
-i直接修改读取的文件内容(慎重)

-n

[rte@deldir]$cat del2 | sed  2phello1hello2 hellohello2 hellohello3 [rte@deldir]$cat del2 | sed  -n 2p  #只输出符号条件的行hello2 hello

-e

[rte@deldir]$cat del2 | sed  -e 2p -e 3p    #多重命令同时hello1hello2 hellohello2 hellohello3 hello3 [rte@deldir]$cat del2 | sed -n  -e 2p -e 3phello2 hellohello3

-f

[rte@deldir]$cat DELs/hel/HEL/2,$p[rte@deldir]$sed -f DEL del2                    #按着DEL文件里的awk命令修改HELlo1HELlo2 helloHELlo2 helloHELlo3 HELlo3 [rte@deldir]$sed -n -f DEL del2HELlo2 helloHELlo3 

-i

[rte@deldir]$cat del2hello1hello2 hellohello3 [rte@deldir]$sed -i s/hel/HEL/ del2             #直接修改del2[rte@deldir]$cat del2HELlo1HELlo2 helloHELlo3

 

Linux之sed