sed 是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有 改变,除非你使用重定向存储输出。Sed主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换程序等。
[root@www ~]# sed [-nefr] [动作] 选项与参数: -n :使用安静(silent)模式。在一般 sed 的用法中,所有来自 STDIN 的数据一般都会被列出到终端上。但如果加上 -n 参数后,则只有经过sed 特殊处理的那一行(或者动作)才会被列出来。 -e :直接在命令列模式上进行 sed 的动作编辑; -f :直接将 sed 的动作写在一个文件内,-f filename 则可以运行 filename 内的sed 动作; -r :sed 的动作支持的是延伸型正规表示法的语法。(默认是基础正规表示法语法) -i :直接修改读取的文件内容,而不是输出到终端。 动作说明: [n1[,n2]]functionn1, n2 :不见得会存在,一般代表『选择进行动作的行数』,举例来说,如果我的动作是需要在 10 到 20 行之间进行的,则『 10,20[动作行为] 』function: a :新增, a 的后面可以接字串,而这些字串会在新的一行出现(目前的下一行)~ c :取代, c 的后面可以接字串,这些字串可以取代 n1,n2 之间的行! d :删除,因为是删除啊,所以 d 后面通常不接任何咚咚; i :插入, i 的后面可以接字串,而这些字串会在新的一行出现(目前的上一行); p :列印,亦即将某个选择的数据印出。通常 p 会与参数 sed -n 一起运行~ s :取代,可以直接进行取代的工作哩!通常这个 s 的动作可以搭配正规表示法!例如 1,20s/old/new/g 就是啦!
将 /etc/passwd 的内容列出并且列印行号,同时,请将第 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 的动作为 '2,5d' ,那个 d 就是删除!因为 2-5 行给他删除了,所以显示的数据就没有 2-5 行罗~ 另外,注意一下,原
本应该是要下达 sed -e 才对,没有 -e 也行啦!同时也要注意的是, sed 后面接的动作,请务必以 '' 两个单引号括住喔!
只要删除第 2 行
nl /etc/passwd | sed '2d'
要删除第 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 .....(后面省略).....
每一行之间都必须要以反斜杠『 \ 』来进行新行的添加喔!所以,上面的例子中,我们可以发现在第一行的最后面就有 \ 存
在。
将第2-5行的内容取代成为『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 number6 sync:x:5:0:sync:/sbin:/bin/sync.....(后面省略).....
透过这个方法我们就能够将数据整行取代了!
仅列出 /etc/passwd 文件内的第 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
可以透过这个 sed 的以行为单位的显示功能, 就能够将某一个文件内的某些行号选择出来显示。
搜索 /etc/passwd有root关键字的行
nl /etc/passwd | sed '/root/p' 1 root:x:0:0:root:/root:/bin/bash1 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找到,除了输出所有行,还会输出匹配行。
使用-n的时候将只打印包含模板的行。
nl /etc/passwd | sed -n '/root/p' 1 root:x:0:0:root:/root:/bin/bash
删除/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已经删除了
找到匹配模式eastern的行后,
搜索/etc/passwd,找到root对应的行,执行后面花括号中的一组命令,每个命令之间用分号分隔,这里把bash替换为
blueshell,再输出这行:
nl /etc/passwd |grep 'root' | sed -n '/bash/{s/bash/blueshell/p}'
如果只替换/etc/passwd的第一个bash关键字为blueshell,就退出
nl /etc/passwd | sed -n '/bash/{s/bash/blueshell/;p;q}' 1 root:x:0:0:root:/root:/bin/blueshell
最后的q是退出。
除了整行的处理模式之外, sed 还可以用行为单位进行部分数据的搜寻并取代。基本上 sed 的搜寻与替代的与 vi 相当的类
似!他有点像这样:
sed 's/要被取代的字串/新的字串/g'
先观察原始信息,利用 /sbin/ifconfig 查询 IP
[root@www ~]# /sbin/ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:90:CC:A6:34:84inet addr:192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0inet6 addr: fe80::290:ccff:fea6:3484/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1.....(以下省略).....
本机的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
接下来则是删除后续的部分,亦即: 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
一条sed命令,删除/etc/passwd第三行到末尾的数据,并把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表示多点编辑,第一个编辑命令删除/etc/passwd第三行到末尾的数据,第二条命令搜索bash替换为blueshell。
sed 可以直接修改文件的内容,不必使用管道命令或数据流重导向! 不过,由於这个动作会直接修改到原始的文件,所以请你
千万不要随便拿系统配置来测试! 我们还是使用下载的 regular_express.txt 文件来测试看看吧!
利用 sed 将 regular_express.txt 内每一行结尾若为 . 则换成 !
[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 的动作是新增,因此该文件最后新增『# This is a test』!
sed 的『 -i 』选项可以直接修改文件内容,这功能非常有帮助!举例来说,如果你有一个 100 万行的文件,你要在第 100 行
加某些文字,此时使用 vim 可能会疯掉!因为文件太大了!那怎办?就利用 sed 啊!透过 sed 直接修改/取代的功能,你甚
至不需要使用 vim 去修订!
参考 http://vbird.dic.ksu.edu.tw/linux_basic/0330regularex_2.php#sed
http://www.cnblogs.com/stephen-liu74/archive/2011/11/17/2245130.html
附 sed命令15个参数工作实例
一、15个参数
1.. r 从文件读入
2.. w写入文件
3.. a 追加命令
4.. i 插入
5.. n 下一个
6.. y 变形命令
7.. q 退出命令
8.. h命令
9.. G命令
10.. x命令
11.. -n选项取消sed的默认行为
12.. 删除:d命令
13.. 替换:s命令
14.. 多点编辑:e命令
15.. -f 引导sed脚本文件名
16.. 选定行的范围:逗号
有兴趣可加入Q群讨论 298148856
二、利用sed 减少反复工作
三、sed中使用系统变量
四、小案例
1.对匹配进行追加和插入
2.对固定的行进行追加和插入
3.删除匹配行下的每二行
一、15个参数
1.. r 从文件读入
[root@watchout2 ~]# cat file
1
2
3
4
5
[root@watchout2 ~]# cat newfile
a
b
c
d
e
[root@watchout2 ~]# sed '/a/r file' newfile (读入文件file,并显示在newfile文件中匹配行a之后)
a
1
2
3
4
5
b
c
d
e
[root@watchout2 ~]# touch /file
[root@watchout2 ~]# echo "aaaaaaaaaaaaaaaaaaaaaaaaaa" > /file
[root@watchout2 ~]# sed '/a/r /file' newfile (读入的文件在不同的路径)
a
aaaaaaaaaaaaaaaaaaaaaaaaaa
b
c
d
e
[root@watchout2 ~]#
2.. w写入文件
[root@watchout2 ~]# sed '/a/w bo' newfile
a
b
c
d
e
[root@watchout2 ~]# cat bo ([root@watchout2 ~]# sed -n '/a/w bobo' newfile )
a
3.. a 追加命令
[root@watchout2 ~]# sed '/b/a \bobo' newfile
a
b
bobo
c
d
e
4.. i 插入
[root@watchout2 ~]# sed '/a/i \bobo' newfile
bobo
a
b
c
d
e
5.. n 下一个
[root@watchout2 ~]# sed -n '/a/{n;p}' newfile(打印匹配行的下一行)
b
[root@watchout2 ~]# sed '/a/{n;s/b/c/p}' newfile
a
c
c
c
d
e
6.. y 变形命令
[root@watchout2 ~]# sed '1,3y/abc/ABC/' newfile
A
B
C
d
e
y命令就是将小写转换成了大写,正则表达式元字符不能使用这个命令。
7.. q 退出命令
[root@watchout2 ~]# sed '3q' newfile
a
b
c
打印前三行后退出。
8.. h命令 是将pattern space 模式空间(临时缓冲区)的内容复制到holding buffer保持缓冲区
9.. G命令 是将holding buffer中的内容取得,尔后放回pattern space中,且追加到相应行的末 尾
g命令是将holding buffer 中的内容取得,尔后放回pattern space 中,且替换相应的行
[root@watchout2 ~]# sed -e '/a/h' -e '/d/G' newfile
a
b
c
d
a
e
h命令会把a匹配行,放入保持缓冲区,G命令会把保持缓冲区中的内容放入模式空间,并追加到匹配行d的下一行。
[root@watchout2 ~]# sed -e '/a/h' -e '$G' newfile
a
b
c
d
e
a
与上相同,只是$代表最后一行。
[root@watchout2 ~]# sed -e '/a/h' -e '/b/g' newfile
a
a
c
d
e
[root@watchout2 ~]# sed -e '/a/h' -e '$g' newfile
a
b
c
d
a
以上h命令会把匹配行a,放入保持缓冲区,g命令会读取保持缓冲区的内容,将匹配行b(第二个例子就是$最后一行)替换为a 。注:a将覆盖匹配行b(第二个例子就是$最后一行)
10.. x命令 是pattern space模式空间将被holding buffer保持缓冲区中的内容替换
[root@watchout2 ~]# sed -e '/a/h' -e '/d/x' newfile
a
b
c
a
e
匹配行d 将被匹配行a替换。
11.. -n选项取消sed的默认行为,sed 默认行为是-p ,
root:/tmp>sed '/6/p' num -p参数打印num的内容,尔后匹配“6”在次打印6,所以6会出现两次。
1
2
3
4
5
6
6
7
8
root:/tmp>sed -n '/6/p' num -n选项取消sed的默认行为(-p ),所以只打印“6”
6
root:/tmp>
12.. 删除:d命令
删除第6行
root:/tmp>sed '6d' num
1
2
3
4
5
7
8
root:/tmp>
从第6行删除到行尾
root:/tmp>sed '6,$d' num
1
2
3
4
5
root:/tmp>
d删除最后一行
root:/tmp>sed '$d' num
1
2
3
4
5
6
7
root:/tmp>
d删除匹配行
root:/tmp>sed '/6/d' num
1
2
3
4
5
7
8
root:/tmp>
13.. 替换:s命令
s表示替换,g表示作用范围整个行,如果没有g标志则只有每行第一个被替换
root:/tmp>sed 's/1/8/g' num (sed默认有-p参数打印搜索后的所有行。如g后面加p,那么匹配行就会打印两次)
8
2
3
4
5
6
7
8
root:/tmp>
行首“1”开头被替换为“8”
root:/tmp>sed 's/^1/8/g' num
8
2
3
4
5
6
7
8
root:/tmp>
&符号表示替换字符串中被找到的部分,所以每个数字后面被追加.6789
root:/tmp>sed 's/[0-9]/&.6789/g' num
1.6789
2.6789
3.6789
4.6789
5.6789
6.6789
7.6789
8.6789
root:/tmp>
\(..\) 保存匹配的字符到标签\1中。 s/\(5\)/\1.6789/ 蓝色部分保存到标签\1中。从表达式最左边开始,向右最多可以使用9个标签
root:/tmp>sed 's/\(5\)/\1.6789/g' num
1
2
3
4
5.6789
6
7
8
root:/tmp>sed 's/\([0-9]\)/\1.6789/g' num
1.6789
2.6789
3.6789
4.6789
5.6789
6.6789
7.6789
8.6789
root:/tmp>
s后面的字符是分隔搜索字符串和替换字符串的分隔符。默认分隔符是斜杠,不论什么字符紧跟s命令都被认为是新的分隔符
root:/tmp>sed 's#6#shell#g' num
1
2
3
4
5
shell
7
8
root:/tmp>
14.. 多点编辑:e命令
root:/tmp>sed -e '1,6d' -e 's/8/8.shell/g' num
7
8.shell
root:/tmp>
15.. -f 引导sed脚本文件名
16.. 选定行的范围:逗号
从第一行到第五行
root:/tmp>sed -n '1,5p' num
1
2
3
4
5
从第一行到第五行,然后在搜索
root:/tmp>sed '1,5s/3/3.linux/g' num
1
2
3.linux
4
5
6
7
8
显示从第三行到行首为6的中间所有行
root:/tmp>sed -n '3,/^6/p' num
3
4
5
6
root:/tmp>
匹配1和5后面追加“******Total********”
root:/tmp>sed '/1/,/5/s/$/******Total********/g' num
1******Total********
2******Total********
3******Total********
4******Total********
5******Total********
6
7
8
root:/tmp>
二、利用sed 减少反复工作
由于工作的需要我必须每次打开一个文件在300行到350,都需要将其注释,尔后在有需求时,在将注释去掉。所以反复工作效率非常低,请各位帮忙如何写一个脚本
2..1 举例说明:
数据文件nu
[root@watchout2 ~]# vi nu
1 ab
2 ab
3 ab
4
5
6
7
8
9
...
...
...
300
...
...
...
350
找到一个这样的脚本
sed -n '/ab/s/$/******AGEV******/p' nu
是在匹配行末尾追加******AGEV******
即:
[root@watchout2 ~]# sed -n '/ab/s/$/******AGEV******/p' nu
1 ab******AGEV******
2 ab******AGEV******
3 ab******AGEV******
根据以上需求将更改如下:
[root@watchout2 ~]# sed -n '/ab/s/^/#/gp' nu
#1 ab
#2 ab
#3 ab
-n 取消默认的-p选项
s进行搜索
^是在行首用#来替换
g是进行全面的行内替换
-n和p是同时使用是对匹配行进行打印
[root@watchout2 ~]# sed -n '1,3s/^/#/p' nu
#1 ab
#2 ab
#3 ab
2..2 解决问题
[root@watchout2 ~]# sed -n '300,350s/^/#/p' nu > newfile
尔后打开newfile文件
复制文件中的内容,把原文件nu中的300-350行删除,将复制内容粘贴。
注:例子
在匹配的某一行添加注释
sed -i.0911-1352.bak '/\/fgn\/shell\/trace.sh/ s/^/#/' /tmp/root
如果有
在匹配的某一行去掉注释
sed -i.0911-1352.bak '/\/fgn\/shell\/trace.sh/ s/^#//' /tmp/root
将4到7行进行注释(后面可重新定向到一个文件)
[root@watchout2 ~]# sed '4,7s/^/#/' nu
1 ab
2 ab
3 ab
#4
#5
#6
#7
将4到7行注释去掉(后面可重新定向到一个文件)
[root@watchout2 ~]# sed '4,7s/#//' nu
1 ab
2 ab
3 ab
4
5
6
7
[root@watchout2 ~]#
2..3 存在问题
个人感觉还是比较麻烦,请高手指点如何写成一个脚本,只要执行脚本就可达到原文件nu中的300行至350行,行首就增加注释“#”。
执行另一个脚本即可将300行至350行的注释去掉。
恭候您的赐教!
三、sed中使用系统变量和命令
要求在脚本中修改nginx.conf server_name值.
ip_nginx_listen=`ip add sh | awk -F"[/|inet]" '{print $5}' |grep -E '[0-9]+.[0-9]+.[0-9]+.[0-9]+' |sed -n '2'p`
使用系统变量:
sed 外层使用单引号时里面使用双引号.
sed -i 's/server_name /'"server_name $ip_nginx_listen"'/' /usr/local/nginx/conf/nginx.conf
sed -i "s/server_name /server_name $ip_nginx_listen/" /usr/local/nginx/conf/nginx.conf
注:ip_nginx_listen 如果取得多个ip地址 . sed就会报错,原因待查.
使用系统命令:
linux:/tmp # sys='linux'
linux:/tmp # echo windows >file
linux:/tmp # sed 's/windows/'`echo $sys`'/' file
linux
linux:/tmp #
linux-t51s:/tmp # sed 's/windows/'$(echo $sys)'/' file
linux
linux-t51s:/tmp #
四、
4..1
sed打印匹配行的下一行
数据文件
[root@watchout2 ~]# cat nu
1
2
3
4
5
6
7
8
9
[root@watchout2 ~]#
脚本文件
[root@watchout2 ~]# sed -n '/2/ {n;p}' nu
3
[root@watchout2 ~]# sed -n '/3/ {n;p}' nu
4
[root@watchout2 ~]#
例如:打印passwd文件中root下一行的内容
[root@watchout2 ~]# sed -n '/^root/ {n;p}' /etc/passwd
bin:x:1:1:bin:/bin:/sbin/nologin
[root@watchout2 ~]#
验证结果
[root@watchout2 ~]# vi /etc/passwd
root:x:0:0:system 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
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
4..2
删除空行并将结果从新定向到fi文件中
[root@watchout2 ~]# sed "/^\s*$/d" te (这个比较严谨)
[root@watchout2 ~]# sed "/^$/d" filesed > fi
4..3
工作案例
1、对匹配进行追加和插入
-i对文件进行直接编辑,首先备份file.txt 文件为file.txt.bak5,尔后将123.45.67.89 这一行< 替换为>
sed -i.bak5 '/123.45.67.89/ s/</>/' file.txt
对file.txt 文件进行直接编辑,匹配acl http proto 在该行下面追加内容
^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ,最好使用上备份参数。
sed -i '/acl http proto/a acl dst ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ' file.txt
2、对固定的行进行追加和插入
[root@localhost tmp]# sed -i '1 i\aaa' passwd 在第一行上插入,使用追加同样道理
[root@localhost tmp]# cat passwd
aaa
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
[root@localhost tmp]# sed -i '1,3 i\aaa' passwd 这样会分别在每一行上插入,使用追加同样道理
[root@localhost tmp]# cat passwd
aaa
root:x:0:0:root:/root:/bin/bash
aaa
bin:x:1:1:bin:/bin:/sbin/nologin
aaa
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
[root@station tmp]# cat nu.ip
59.43.0.0
59.43.0.1
59.43.0.2
59.43.0.3
59.43.0.4
59.43.0.5
59.43.0.6
59.43.0.7
59.43.0.8
59.43.0.9
[root@station tmp]# sed -i '/59.43.0.3/ {n;n;d}' nu.ip
[root@station tmp]# cat nu.ip
59.43.0.0
59.43.0.1
59.43.0.2
59.43.0.3
59.43.0.4
59.43.0.6
59.43.0.7
59.43.0.8
59.43.0.9