一、grep 文本过滤命令
grep命令是一种强大的文本搜索工具,
可以根据用户指定的“模式”对目标文本进行匹配检查,打印匹配到的行;
由正则表达式或者字符及基本文件字符所编写的过滤条件
-i
-ni
-n 关键字
-n2 关键字
grep -A3 关键字
grep -B3 关键字
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
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
grep -in ^root passwd
grep -i root$ passwd
grep -i -E "^root|root$" passwd
grep root passwd | grep -i -E "^root|root$"
grep root passwd | grep -i -E "^root|root$" -v
grep -E 'r..t' passwd
grep -E 'r...t' passwd
grep -E 't...t' passwd
grep -E 't*t' passwd
grep -E 't..t' passwd
ls
vim passwd
grep ....t passwd
grep -E "\<....t" passwd
grep -E "....t\>" passwd
grep -E "\<....t\>" passwd
ifconfig eth0
ifconfig eth0 |grep -E "inet"
ifconfig eth0 |grep -E "inet\>"
grep -E 'xa*y' westos
grep -E 'xa?y' westos
grep -E 'xa+y' westos
grep -E 'xa{2}y' westos
grep -E 'xa{2,}y' westos
grep -E 'xa{,2}y' westos
grep -E 'xa{1,2}y' westos
grep -E "t(xy){3}t" westos
grep -E "t(xy){3,}t" westos
grep -E "t(xy){4}t" westos
grep -E "t(xy){0,4}t" westos
二、sed 行编辑器
用来操作出ASCLL码的文本;
处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(Pattern space)可以指定仅仅处理哪些行为;
符合模式条件的处理,不符合模式条件的不予处理,处理完成之后八缓冲区的内容送往屏幕,接着处理下一行,这样不断重复,直到文件末尾。
p ##显示 d ##删除
a ##添加 i ##向上添加
c ##更改 w ##保存
G ##
p:显示
cat -n fstab | sed -n 6p
cat -n fstab | sed -ne '6p;2p'
sed -n '/^#/p' fstab
sed -n '/^#/!p' fstab
d:删除
sed '5d' fstab
cat -n fstab | sed '5d'
cat -n fstab | sed '5,7d'
cat -n fstab | sed -e '5d;7d'
sed '/^#/d' fstab
sed '/#/d' fstab
sed '/#/!d' fstab
a:添加
sed '/hello/aworld' westos
sed '/hello/aworld test' westos
sed '/hello/aworld\ntest' westos
sed '/123/aworld\ntest' westos
sed '/^123/aworld\ntest' westos
sed '/123$/aworld\ntest' westos
a:向上添加
sed '/123/i456' westos
c :更改
sed '/hello/chello westos' westos
w :保存
sed '/^#/wfile' fstab
sed '/#/wfile' fstab
cat file
sed -n '/^#/wfile' fstab
= :显示**所在行
sed '/^#/=' fstab
sed -n '/^#/=' fstab
r:合并文件
sed '$r westos' fstab
sed '1r westos' fstab
sed '/UUID/r westos' fstab
练习:
1.
2.编写脚本使得 apache端口可以更改
原文地址https://blog.csdn.net/qq_37048504/article/details/81952940