sed介绍
sed流编辑器(stream editor),在三剑客中排行老二,是一款简单的文本编辑语言。sed并不直接处理源文件,而是逐行读取源文件的内容到内存(称模式空间)中,然后在模式空间中使用sed命令处理,再打印模式空间处理后的内容到标准输出。
sed的能够实现的功能:增删改查、替换、过滤、取行。
sed文本处理原理图
sed命令的语法:
sed [选项] ‘AddressCommand [修饰符]’inputfile(输入文件)
sed命令语法各参数解释
实验环境
[[email protected] tmp]# cat userpasswd.txt
1 stu01
2 9cab8
3 stu02
4 28f37
5 stu03
6 cd4ef
7 stu04
8 221ec
9 stu05
10 f7a98
[[email protected] tmp]#
选项
-n: 取消默认输出,不打印(输出)模式空间的内容
常与p连用,只打印符合条件的行(取消默认输出,但打印符合条件的行)
[[email protected] tmp]# sed -n ‘s#stu01#stu#g‘p userpasswd.txt
1 stu
[[email protected] tmp]#
-i:直接修改源文件(谨慎使用,以免操作失误导致源文件损坏)
-e:多个操作同时进行
-r:使用扩展表达式
Address:地址范围
1、LineNumber:特定的行,指定第几行,即n;$:表示最后一行
[[email protected] tmp]# sed -n 2p userpasswd.txt
2 9cab8
[[email protected] tmp]#
[[email protected] tmp]# sed -n ‘$p‘ userpasswd.txt
10 f7a98
[[email protected] tmp]#
2、Start,End:起始行,结束行,例如“2,5”,从第2行到第5行
[[email protected] tmp]# sed -n 2,5p userpasswd.txt
2 9cab8
3 stu02
4 28f37
5 stu03
[[email protected] tmp]#
3、mode1,mode2:从第一次被模式1匹配的行开始,到第一次被模式2匹配的行结束
[[email protected] tmp]# sed -n ‘/stu02/,6p‘ userpasswd.txt
3 stu02
4 28f37
5 stu03
6 cd4ef
[[email protected] tmp]#
4、StartLine,+n:从StartLine开始往后n行,例如:“5,+2”,从第5行开始往后2行,即从第5行到第7行
[[email protected] tmp]# sed -n 5,+2p userpasswd.txt
5 stu03
6 cd4ef
7 stu04
[[email protected] tmp]#
5、/^root/:地址范围可以使用正则表达式,但必须要用符号“/ /”括起来,此处的含义是找出以root开头的行
[[email protected] tmp]# sed -n ‘/.*stu.*/p‘ userpasswd.txt
1 stu01
3 stu02
5 stu03
7 stu04
9 stu05
[[email protected] tmp]#
Command: sed执行命令
1、d:删除符合条件的行
[[email protected] tmp]# sed 2,3d userpasswd.txt
1 stu01
4 28f37
5 stu03
6 cd4ef
7 stu04
8 221ec
9 stu05
10 f7a98
[[email protected] tmp]#
2、p:打印符合条件的行(输出)
[[email protected] tmp]# sed -n 3,4p userpasswd.txt
3 stu02
4 28f37
[[email protected] tmp]#
3、’a 内容’:在指定的行后面追加新的内容
[[email protected] tmp]# sed ‘2a 11 hello‘ userpasswd.txt
1 stu01
2 9cab8
11 hello
3 stu02
4 28f37
…
4、’i 内容’:在指定的行前追加新的内容
[[email protected] tmp]# sed ‘2i 11 hello‘ userpasswd.txt
1 stu01
11 hello
2 9cab8
3 stu02
4 28f37
…
5、r file:将指定的文件内容添加到符合条件的行后面
[[email protected] tmp]# cat test
who
[[email protected] tmp]# sed ‘2r /tmp/test‘ userpasswd.txt
1 stu01
2 9cab8
who
3 stu02
4 28f37
…
6、w file:将符合条件的行的内容另存为指定文件中
[[email protected] tmp]# sed -n ‘4w /tmp/test1‘ userpasswd.txt
[[email protected] tmp]# cat test1
4 28f37
[[email protected] tmp]#
7、s/模式/字符/:查找替换,也可以写成s#模式#字符#、[email protected]模式@字符【s/需要查找的内容/替换的内容】
修饰符:
g:替换所有(全局替换)
[[email protected] tmp]# sed ‘s#stu01#stu#g‘ userpasswd.txt
1 stu
2 9cab8
3 stu02
…
[[email protected] tmp]# sed -n ‘s#stu01#stu#g‘p userpasswd.txt (只打印符合条件的行)
1 stu
[[email protected] tmp]#
i:忽略字符的大小写
[[email protected] tmp]# sed ‘s#sTu01#stu#g‘ userpasswd.txt
1 stu01
2 9cab8
3 stu02
…
[[email protected] tmp]# sed ‘s#sTu01#stu#gi‘ userpasswd.txt
1 stu
2 9cab8
3 stu02
…
8、l:打印不可见字符
[[email protected] tmp]# sed -n l userpasswd.txt
1 stu01$
2 9cab8$
3 stu02$
4 28f37$
5 stu03$
…
[[email protected] tmp]#
特殊符号:
&:代表被替换的内容
[[email protected] tmp]# sed ‘s#t#--&--#g‘ userpasswd.txt
1 s--t--u01
2 9cab8
3 s--t--u02
4 28f37
5 s--t--u03
…
原文地址:http://blog.51cto.com/13691477/2113132