您可以使用grep命令搜索给定模式的字符串,单词,文本和数字。 您可以将-c选项传递给grep命令。 它仅显示每个文件匹配模式的次数。
显示单词linuxidc在名为linuxidc.txt的文件中出现的总次数
语法是:
grep -c string(字符串) filename(文件名)
[linuxidc@localhost ]$ 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
会话示例: