如何在 Windows/DOS 上捕获 stderr?
我想将脚本中的错误捕获到文件中而不是屏幕上。
在 *nix 中,这是通过 stderr 重定向来完成的,通常
echo "Error" 2> errorfile.log
如何在 Windows 下的 CMD 脚本中执行此操作?
I want to capture the errors from a script into a file instead of to the screen.
In *nix, this is done with stderr redirection, usually
echo "Error" 2> errorfile.log
How do I do it in a CMD script under Windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如:
这会将 stdout 和 stderr 定向到文件名 output.txt。
有关更多详细信息,请参阅Windows 批处理文件未充分利用的功能。
For example:
This will direct stdout and stderr to a file name output.txt.
See Underused features of Windows batch files for more details.
这在 Win32 中也应该可以工作。
如果您已经重定向了 stdout,并且希望将 stderr 重定向到同一文件,则必须使用 2>& 特殊形式,而不是仅仅指定同一个文件两次。 否则你会收到“文件忙”错误。
That should work in Win32, too.
If you have already redirected stdout, and want stderr redirected to the same file, you must use the 2>& special form, rather than just specifying the same file twice. Otherwise you'll get a "file busy" error.