本文共 972 字,大约阅读时间需要 3 分钟。
[root@localhost test]# cat 1.txt | grep root 1.txt --color=auto
[root@localhost test]# cat 1.txt | grep -w "root" 1.txt --color=auto
注: 可以看出来,加
-w
参数会精准匹配要匹配的单词,并且是区分呢大小写匹配。其中 参数--color=auto
是加入自动颜色,就是我们匹配的单词高亮显示
[root@localhost test]# ps -ef | grep ssh
[root@localhost test]# ps -ef | grep ssh | grep -v grep
[root@localhost test]# grep -c "root" 1.txt
[root@localhost test]# grep -n "root" 1.txt --color=auto
[root@localhost test]# grep "root" 1.txt 2.txt 3.txt
[root@localhost test]# grep -l "root" 1.txt 2.txt 3.txt
[root@localhost test]# cat 1.txt | grep -i "root" --color=auto
[root@localhost test]# seq 10 | grep "5" -A 3
[root@localhost test]# seq 10 | grep "5" -B 3
[root@localhost test]# seq 10 | grep "5" -C 3
通过以上图示实验,可以明白:
-A n 向下匹配n行 -B n 向上匹配n行 -C n 同时向上向下匹配n行
转载地址:http://hoazx.baihongyu.com/