shell 三剑客之 grep

命令语法格式

shell 文本处理三剑客之 grep 和 egrep

 

grep 参数

shell 文本处理三剑客之 grep 和 egrep

 

 案例

shell 文本处理三剑客之 grep 和 egrep

 

显示file中有python的行

grep python file

shell 文本处理三剑客之 grep 和 egrep

 

显示没有python的行,不忽略大小写

grep -v python file

 shell 文本处理三剑客之 grep 和 egrep

 

没有python的行,忽略大小写

grep -vi python file

shell 文本处理三剑客之 grep 和 egrep

 

查找/etc/man_db.conf 中带man的行,在文件中的行号

grep -n man /etc/man_db.conf 

  

shell 文本处理三剑客之 grep 和 egrep

 

 -E 支持扩展正则表达式选项 查找 python 或者 PYTHON 的行

grep -E "python|PYTHON" file

shell 文本处理三剑客之 grep 和 egrep

 

只显示匹配到的行数

grep -c python file

shell 文本处理三剑客之 grep 和 egrep

egrep 比 grep 功能更加强大,支持正则,其余的用法一样

egrep "python|PYTHON" file

shell 文本处理三剑客之 grep 和 egrep

 

  

 

相关文章: