我有一个文本文件,想写一个批处理脚本来搜索字符串" -date = 8/27/2015"并将该行写入新的文本文件。这是我尝试过的:
for /F "tokens=*" %%A in (report4.bat) do findstr.exe /m "-date=8/27/2015" "%%A" >>%userprofile%\Desktop\report6.bat
for /F "tokens=*" %%A in (report4.bat) do findstr.exe /m "-date=8/27/2015" "%%A" && echo %%A >>%userprofile%\Desktop\report6.bat
findstr.exe /x /c "-date=8/27/2015" /f report4.bat >>%userprofile%\Desktop\report6.bat
有没有人有任何想法?
非常感谢任何帮助。 谢谢,
答案 0 :(得分:0)
差不多完成了
findstr.exe /l /c:"-date=8/27/2015" report4.bat >>"%userprofile%\Desktop\report6.bat"