#檢視系統記憶體、快取、交換分割槽 -e的作用是匹配多個表示式
[root@shell ~]# cat /proc/meminfo|grep -e mem -e cache -e swap
查詢/etc目錄下的所有檔案中的郵件位址;
[root@shell ~]# grep -r -o -n -e '[a-z0-9]+\@[a-z0-9]+\.[a-z]' /etc
其中:-r:遞迴,-n表示匹配的行號,-o只輸出匹配內容
-e:支援擴充套件正規表示式
#查詢/etc/目錄下檔案包含"hostname"的次數,-c統計匹配次數,-v取反
[root@shell ~]# grep -r -c 'hostname' /etc/|grep -v "0$"
#查詢核心日誌中eth的行,顯示顏色及行號:
[root@shell ~]# dmesg | grep -n --color=auto 'eth'
#用dmesg列出核心資訊,再以grep找出含有eth哪行,
在關鍵字所在行的前兩行與後三行也一起找出出來顯示
[root@shell ~]# dmesg |grep -n -a3 -b2 --color=auto 'eth'
#統計系統中能登入的使用者的個數
[root@shell ~]# cat /etc/passwd |grep -c bash$
#統計httpd程序數量
#顯示games 匹配的「-c」前後4行
[root@shell ~]# grep -c 4 'games' --color /etc/passwd
#獲取網絡卡名稱:
[root@shell ~]# ip a |grep -e '^[0-9]' |awk -f:''
#擷取ip位址,[^]*表示以非空字元作為結束符,[0-9.]*表示
數字和點的結合。
[root@shell ~]# ifconfig eth0|grep -e -o 'inet addr:[^]*'
|grep -o'[0-9.]*'
[root@shell ~]# ifconfig eth0|grep -i hwaddr |awk ''
#檢視指定程序:
[root@shell ~]# ps -ef|grep mysql
root 1688 1645 0 05:02 pts/0 00:00:00 grep mysql
[root@shell ~]# ps -ef |grep svn
root 1684 1645 0 05:16 pts/0 00:00:00 grep svn
正規表示式 正規表示式 總結
非負整數 d 正整數 0 9 1 9 0 9 非正整數 d 0 負整數 0 9 1 9 0 9 整數 d 非負浮點數 d d 正浮點數 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 非正浮點數 d d 0 0 負浮點數 正浮點數正則式 英文本串 a za z...
正規表示式 表示式
網域名稱 a za z0 9 a za z0 9 a za z0 9 a za z0 9 interneturl a za z s 或 http w w w 手機號碼 13 0 9 14 5 7 15 0 1 2 3 5 6 7 8 9 18 0 1 2 3 5 6 7 8 9 d 號碼 x x x...
Linux正規表示式 編寫正規表示式
為了所有實用化的用途,你可以通過使用程式產生正確的結果。然而,並不意味著程式總是如你所願的那樣正確地工作。多數情況下,如果程式不能產生想要的輸出,可以斷定真正的問題 排除輸入或語法錯誤 在於如何描述想要的東西。換句話說,應該考慮糾正問題的地方是描述想要的結果的表示式。表示式不完整或者公式表示得不正確...