我正在尝试在 Linux 中查找文档集合中特定单词的字数。
我曾尝试使用grep
和ack-grep
结合wc
,但似乎无法想出有效的管道组合:)
答案1
请尝试以下操作:
grep -o "string" filename | wc -w
如果您想要目录中的所有文件,请从该目录运行以下脚本:
for file in *
do let count=$count+`grep -o "wordyouaretryingtofind" $file | wc -w`
done
echo occurence $count times