2021-05-12 14:32:11
如何在Linux或Unix上使用grep計算單詞出現次數
2020-06-16 16:32:40
想知道一個單詞(比如linuxidc或IP地址)在文字檔案中出現了多少次嗎?在Linux或類Unix系統上可以使用grep命令來實現。
您可以使用grep命令搜尋給定模式的字串,單詞,文字和數位。 您可以將-c選項傳遞給grep命令。 它僅顯示每個檔案匹配模式的次數。
顯示單詞linuxidc在名為linuxidc.txt的檔案中出現的總次數
語法是:
grep -c string(字串) filename(檔名)
[linuxidc@localhost www.linuxidc.com]$ grep -c linuxidc linuxidc.txt
範例輸出:
2
要使用grep計算名為/etc/passwd root的檔案中出現的字總數,請執行:
grep -c root /etc/passwd
要驗證執行:
grep --color root /etc/passwd
對談範例:
將-w選項傳遞給grep以僅選擇與指定模式匹配的整個單詞或短語:
grep -w root /etc/passwd
或者
grep -c -w root /etc/passwd
在此範例中,僅匹配與root的單詞:
grep --color -w '^root' /etc/passwd
grep -c -w '^root' /etc/passwd
只顯示匹配的部分。
grep -o 'root' /etc/passwd
grep -c -o 'root' /etc/passwd
對談範例:
相關文章