用于查找字符串的批处理文件" -date = 8/27/2015"在一行文本文件中,将该行写入另一个文件

时间:2015-09-15 15:15:06

标签: windows batch-file cmd

我有一个文本文件,想写一个批处理脚本来搜索字符串" -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

有没有人有任何想法?

非常感谢任何帮助。 谢谢,

1 个答案:

答案 0 :(得分:0)

差不多完成了

findstr.exe /l /c:"-date=8/27/2015" report4.bat >>"%userprofile%\Desktop\report6.bat"