linux之shell的正则表达式
一、grep 文本过滤命令
grep命令是一种强大的文本搜索工具,
可以根据用户指定的“模式”对目标文本进行匹配检查,打印匹配到的行;
由正则表达式或者字符及基本文件字符所编写的过滤条件
- 1
- 2
- 3
-i ##表示不区分匹配条件的大小写
-ni ##表示不区分匹配条件的大小写并且显示行数
-n 关键字 ##表示并显示含有关键字的行数
-n2 关键字 ##显示关键字的行数和上下两行
grep -A3 关键字 ##显示关键字下面三行 After
grep -B3 关键字 ##显示关键字上面三行 Before
grep ^关键字 ##显示关键字在开头的的内容
grep 关键字$ ##显示关键字在末尾的内容
grep 关键字 文本 -v ##显示除了关键字的其他内容
egrep=grep -E
扩展正则表达式 grep -E "bin|lp" passwd
显示passwd文本里含有bin或者lp的内容,这里|也有通道符的意思,所以属于扩展正则表达式,要用grep -E或 egrep
显示root在中间的内容,这里用两条命令结合实现
grep \<关键字 ##前面有堵墙 前面什么都不能有
grep 关键字\> ##后面有堵墙
grep \<关键字\> ##前后都只能是这个关键字
grep x..y ##匹配x和y中间有两个字符的内容
grep x....y
grep ....y
grep字符匹配次数的设定
-o 唯一匹配
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
grep -i root passwd ##-i 不区分大小写 输出含有root的行
grep -in ^root passwd ##-n 表示显示行号 输出以root开头的行
grep -i root$ passwd ##以root结尾的行
grep -i -E "^root|root$" passwd ##以root开头或以root结尾
grep root passwd | grep -i -E "^root|root$" ##以root开头或以root结尾
grep root passwd | grep -i -E "^root|root$" -v ##-v 相反
- 1
- 2
- 3
- 4
- 5
- 6
grep -E 'r..t' passwd
grep -E 'r...t' passwd
grep -E 't...t' passwd
grep -E 't*t' passwd ##txt tart
grep -E 't..t' passwd ##txxt
- 1
- 2
- 3
- 4
- 5
ls
vim passwd
grep ....t passwd ##gfdsft ->fdsft
grep -E "\<....t" passwd ##以....t开头的单词
grep -E "....t\>" passwd ##以....t的结尾的单词
grep -E "\<....t\>" passwd ##单词....t
ifconfig eth0
ifconfig eth0 |grep -E "inet" ##两行
ifconfig eth0 |grep -E "inet\>" ## 一行
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
grep -E 'xa*y' westos ##任意个a
grep -E 'xa?y' westos ##0-1个a
grep -E 'xa+y' westos ##1+个a
grep -E 'xa{2}y' westos ##2个a
grep -E 'xa{2,}y' westos ##最少2个a
grep -E 'xa{,2}y' westos ##最多2个a
grep -E 'xa{1,2}y' westos ##1-2个a
grep -E "t(xy){3}t" westos ##3个a
grep -E "t(xy){3,}t" westos ##最少三个xy
grep -E "t(xy){4}t" westos ##4个xy
grep -E "t(xy){0,4}t" westos ##0-4个xy
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
二、sed 行编辑器
用来操作出ASCLL码的文本;
处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(Pattern space)可以指定仅仅处理哪些行为;
符合模式条件的处理,不符合模式条件的不予处理,处理完成之后八缓冲区的内容送往屏幕,接着处理下一行,这样不断重复,直到文件末尾。
- 1
- 2
- 3
p ##显示 d ##删除
a ##添加 i ##向上添加
c ##更改 w ##保存
= ##显示**所在行 r ##合并文件
G ##
- 1
- 2
- 3
- 4
- 5
p:显示
cat -n fstab | sed -n 6p ##显示第6行
cat -n fstab | sed -ne '6p;2p' ##显示第2,6行
sed -n '/^#/p' fstab ##显示以#开头的行
sed -n '/^#/!p' fstab ##显示不以#开头的行
- 1
- 2
- 3
- 4
d:删除
sed '5d' fstab ##删除第五行
cat -n fstab | sed '5d' ##删除第五行并显示行号
cat -n fstab | sed '5,7d' ##删除5-7行
cat -n fstab | sed -e '5d;7d' ##删除第五和第7行
sed '/^#/d' fstab
sed '/#/d' fstab
sed '/#/!d' fstab
- 1
- 2
- 3
- 4
- 5
- 6
- 7
a:添加
sed '/hello/aworld' westos ##在hello后行加world
sed '/hello/aworld test' westos ##在hello后行加world test
sed '/hello/aworld\ntest' westos ##在hello后行加world 后行加test
sed '/123/aworld\ntest' westos
sed '/^123/aworld\ntest' westos
sed '/123$/aworld\ntest' westos
- 1
- 2
- 3
- 4
- 5
- 6
a:向上添加
sed '/123/i456' westos ##给westos中的123前面添加456
- 1
c :更改
sed '/hello/chello westos' westos ##把westos文件中有hello行换为hello westos
- 1
w :保存
sed '/^#/wfile' fstab ##保存以#开头到file中
sed '/#/wfile' fstab ##/#/所有有#的行都保存到file中
cat file
sed -n '/^#/wfile' fstab ##不显示结果直接保存
- 1
- 2
- 3
- 4
= :显示**所在行
sed '/^#/=' fstab ##显示#所在行号不显示内容
sed -n '/^#/=' fstab ##显示#所在的行号显示内容
- 1
- 2
r:合并文件
sed '$r westos' fstab ##合并westos和fstab文件 $表示在最后
sed '1r westos' fstab ##westos加到fstab文件第一行
sed '/UUID/r westos' fstab ##将文件westos加到fstab UUID的下一行
- 1
- 2
- 3
练习:
1.
2.编写脚本使得 apache端口可以更改
原文地址https://blog.csdn.net/qq_37048504/article/details/81952940