grep使用多個查詢條件--或

推薦方法

\| 符號法

[root@mail ~]# grep 'usrquota\|grpquota' /etc/fstab擴展

 

其餘方法

『1』使用多個 -e 參數

如:grep

netstat -an | grep -E "ESTABLISHED|WAIT"方法

注意:tab

netstat -an | grep -e EST -e WAITmail

並列使用多個 -e參數能夠實現或條件參數

 

『2』使用擴展 -E

netstat -an | grep -E "ESTABLISHED|WAIT"ab

此處的 -E 是大寫 ,匹配條件必定要加 引號

相關文章
相關標籤/搜索