Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题是对这个问题的额外限制。我想通过避免在同一个文件中对同一个单词进行多次计数来实现字数统计?例如:如果单词“aaa”在“file1.txt”中出现 10 次,但是对于目录中的其他文件,计数应该只增加 1 而不是 10 等等。
因此,您想要的是包含该单词的文件数。简单的:
grep -l word *|wc -l