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.
我已经能够构建以下内容,但是在批处理之后可以将每个文件的结果加起来,因为有人知道如何实现这一点吗?
find /C "HELLO" c:\TOM\*.TXT
如果我理解您的要求并且您想计算所有文件中出现多少次(行数)单词“HELLO”,那么type c:\TOM\*.TXT 2>nul |find /c "HELLO"(2>nul禁止列出文件名,如果您想看到它们只需删除该部分)应该可以完成这项工作。
type c:\TOM\*.TXT 2>nul |find /c "HELLO"
2>nul