我想停止findstr
显示任何消息,我能够这样做但我还想将findstr
结果作为文本文件提取,如果我停止findstr
来显示消息如下:
FINDSTR: can't open anything.exe
或FINDSTR: Line 185369536 is too long
使用findstr /s /m "anything" "C:\*.*">nul 2>&1
然后,我无法将findstr
结果显示为文本文件。
将findstr
作为文本文件提取而不显示任何findstr
条消息的代码是什么?
答案 0 :(得分:0)
findstr ..... >"myFile" 2>nul
将stdout流重定向到文件,将stderr流重定向到nul。这样就可以在隐藏错误的同时保存有效数据