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