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.
我有超过 100 个文本格式的日志文件。我正在使用命令提示符使用 FIND 搜索文件中的特定字符串。但我一次只能搜索一个文件。我怎样才能一次搜索所有文件。我也想把结果放在不同的文本文件中。
像这样启动findtext.bat "search string"它,它将创建单独的 *.out 文件。
findtext.bat "search string"
@echo off for %%a in (*.log) do ( find "%~1" < "%%a" > "%%~na.out" )