命令语法格式python
grep 参数正则表达式
显示file中有python的行shell
grep python file
显示没有python的行,不忽略大小写3d
grep -v python file
没有python的行,忽略大小写blog
grep -vi python file
查找/etc/man_db.conf 中带man的行,在文件中的行号class
grep -n man /etc/man_db.conf
-E 支持扩展正则表达式选项 查找 python 或者 PYTHON 的行扩展
grep -E "python|PYTHON" file
只显示匹配到的行数file
grep -c python file
egrep "python|PYTHON" file