如何在 Windows/DOS 上捕获 stderr?

发布于 2024-07-12 09:16:50 字数 167 浏览 10 评论 0原文

我想将脚本中的错误捕获到文件中而不是屏幕上。

在 *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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

于我来说 2024-07-19 09:16:50

例如:

PSKILL NOTEPAD >output.txt 2>&1

这会将 stdout 和 stderr 定向到文件名 output.txt。

有关更多详细信息,请参阅Windows 批处理文件未充分利用的功能

For example:

PSKILL NOTEPAD >output.txt 2>&1

This will direct stdout and stderr to a file name output.txt.

See Underused features of Windows batch files for more details.

初相遇 2024-07-19 09:16:50

这在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文