Linux-sed
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-sed相关的知识,希望对你有一定的参考价值。
本章内容
Sed介绍
Sed用法
Sed高级用法
处理文本的工具sed
Stream EDitor, 行编辑器
sed是一种流编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。然后读入下行,执行下一个循环。如果没有使诸如'D'的特殊命令,那会在两个循环之间清空模式空间,但不会清空保留空间。这样不断重复,直到文件末尾。文件内容并没有改变,除非你使用重定向存储输出。
功能:主要用来自动编辑一个或多个文件,简化对文件的反复操作,编写转换程序等
参考: http://www.gnu.org/software/sed/manual/sed.html
sed跟 grep相比,不仅能查看文件,还能修改文件,这点相当有用
sed工具
用法:
sed [option]... 'script' inputfile...
常用选项:
-n:不输出模式空间内容到屏幕,即不自动打印
-e: 多点编辑
-f:/PATH/SCRIPT_FILE: 从指定文件中读取编辑脚本
-r: 支持使用扩展正则表达式
-i.bak: 备份文件并原处编辑
script:
'地址命令'
地址定界:
(1) 不给地址:对全文进行处理
(2) 单地址:
#: 指定的行,$:最后一行
/pattern/:被此处模式所能够匹配到的每一行
(3) 地址范围:
#,#
#,+#
/pat1/,/pat2/
#,/pat1/
(4) ~:步进
1~2 奇数行
2~2 偶数行
编辑命令:
d: 删除模式空间匹配的行,并立即启用下一轮循环
p:打印当前模式空间内容,追加到默认输出之后
a [\]text:在指定行后面追加文本
支持使用\n实现多行追加
i [\]text:在行前面插入文本
c [\]text:替换行为单行或多行文本
w /path/somefile: 保存模式匹配的行至指定文件
r /path/somefile:读取指定文件的文本至模式空间中
匹配到的行后
=: 为模式空间中的行打印行号
!:模式空间中匹配行取反处理
s///:查找替换,支持使用其它分隔符,[email protected]@@,s###
替换标记:
g: 行内全局替换
p: 显示替换成功的行
w /PATH/TO/SOMEFILE:将替换成功的行保存至文件中
sed示例
sed '2p' /etc/passwd
sed -n '2p' /etc/passwd
sed -n '1,4p' /etc/passwd
sed -n '/root/p' /etc/passwd
sed -n '2,/root/p' /etc/passwd 从2行开始
sed -n '/^$/=' file 显示空行行号
sed -n -e '/^$/p' -e '/^$/=' file
sed '/root/a\superman' /etc/passwd行后
sed '/root/i\superman' /etc/passwd 行前
sed '/root/c\superman' /etc/passwd 代替行
sed '/^$/d' file
sed '1,10d' file
nl /etc/passwd | sed '2,5d'
nl /etc/passwd | sed '2a tea'
sed 's/test/mytest/g' example
sed -n 's/root/&superman/p' /etc/passwd 单词后
sed -n 's/root/superman&/p' /etc/passwd 单词前
sed -e 's/dog/cat/' -e 's/hi/lo/' pets
sed -i.bak 's/dog/cat/g' pets
高级编辑命令
P:打印模式空间开端至\n内容,并追加到默认输出之前
h: 把模式空间中的内容覆盖至保持空间中
H:把模式空间中的内容追加至保持空间中
g: 从保持空间取出数据覆盖至模式空间
G:从保持空间取出内容追加至模式空间
x: 把模式空间中的内容与保持空间中的内容进行互换
n: 读取匹配到的行的下一行覆盖至模式空间
N:读取匹配到的行的下一行追加至模式空间
d: 删除模式空间中的行
D:如果模式空间包含换行符,则删除直到第一个换行符的模式空间中的文本,并不会读取新的输入行,而使用合成的模式空间重新启动循环。如果模式空间不包含换行符,则会像发出d命令那样启动正常的新循环
sed示例
sed -n 'n;p' FILE 显示偶数行
sed '1!G;h;$!d' FILE 逆向显示文件内容
sed 'N;D' FILE 显示最后一行
sed '$!N;$!D' FILE 显示文件后两行
sed '$!d' FILE 取出文件最后一行
sed 'G' FILE 每一行后面加一行空白行
sed 'g' FILE 全部行替换成空白行
sed '/^$/d;G' FILE 把空白行合成一行
sed 'n;d' FILE 显示奇数行
sed -n '1!G;h;$p' FILE 逆向显示文件内容
练习
1、删除centos7系统/etc/grub2.cfg文件中所有以空白开头的行行首的空白字符
[[email protected] data]#sed -r "[email protected]^[[:space:]][email protected]@" /etc/grub2.cfg
2、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
[[email protected] data]#sed -r "[email protected]^#[[:space:]][email protected]@" /etc/fstab
3、在centos6系统/root/install.log每一行行首增加#号
[[email protected] ~]#sed -r "[email protected]^@#@" /root/install.log
4、在/etc/fstab文件中不以#开头的行的行首增加#号
(1) [[email protected] ~]#sed -r "[email protected]^([^#].*)@#\[email protected]" /etc/fstab
(2) [[email protected] ~]#sed -r "[email protected]^[^#].*@#&@" /etc/fstab
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
[[email protected] ~]#echo "/etc/fstab" | sed -r '[email protected]^(.*/)([^/]+)/[email protected]\[email protected]'
[[email protected] ~]#echo "/etc/fstab" | sed -r '[email protected]^(.*/)([^/]+)/[email protected]\[email protected]'
6、利用sed 取出ifconfig命令中本机的IPv4地址
[[email protected] data]#ifconfig ens33 | sed -n '2p' | sed -r 's/^.*inet (.*) net.*/\1/'
7、统计centos安装光盘中Package目录下的所有rpm文件的以.分隔倒数第二个字段的重复次数
[[email protected] Packages]#ls | sed -r '[email protected]*\.([^.]+)\[email protected]\[email protected]' | sort | uniq -c
8、统计/etc/init.d/functions文件中每个单词的出现次数,并排序(用grep和sed两种方法分别实现)
[[email protected] data]#egrep -o "[[:alpha:]]+" functions | sort | uniq -c | sort -nr | less
[[email protected] data]#sed -r '[email protected][^[:alpha:]][email protected]\[email protected]' functions | sort | uniq -c | sort -nr | sed '1d' | less
9、将文本文件的n和n+1行合并为一行,n为奇数行
[[email protected] data]#cat f1
1
2
3
4
5
6
[[email protected] data]#sed 'N;[email protected]\[email protected]@' f1
12
34
56
思考:
取ifconfig ens33的第2行
ifconfig ens33 | sed -n '2p'
取IP地址
(1) [[email protected] data]#ifconfig ens33 | sed -n '2p' | sed -r 's/^.*inet (.*) net.*/\1/'
192.168.30.129
(2) [[email protected] data]#ifconfig ens33 | sed -n '2p' |sed -e 's/.*inet //' -e 's/ netmask.*//'
(3) [[email protected] data]#ifconfig ens33 | sed -r '2!d;s/^.*inet (.*) net.*/\1/'
(4) [[email protected] data]#ifconfig ens33 | sed -n '2p' |sed 's/.*inet //' | sed 's/ netmask.*//'
把/etc/httpd/conf/httpd.conf中,#NameVirtualHost这行和#<VirtualHost/到#<\/VirtualHost>之间的行之前的#注释掉
[[email protected] ~]#sed -e '/^#<VirtualHost/,/^#<\/VirtualHost>/[email protected]#@@g' -e '/#NameVirtualHost/s/#//' /etc/httpd/conf/httpd.conf
取目录名
[[email protected] data]#echo "/etc/sysconfig/network-scripts/" | sed -r '[email protected]^(.*/)([^/]+)/[email protected]\[email protected]'
/etc/sysconfig/
取基名
[[email protected] data]#echo "/etc/sysconfig/network-scripts/" | sed -r '[email protected]^(.*/)([^/]+)/[email protected]\[email protected]'
network-scripts
以上是关于Linux-sed的主要内容,如果未能解决你的问题,请参考以下文章