命令語法格式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