使用 DOS/CMD/批处理文件如何显示控制台输出,并将 STDOUT 和 STDERR 流重定向到文件?

发布于 2024-08-09 01:22:56 字数 41 浏览 7 评论 0原文

例如,将控制台直接指向 ok.log,将错误指向 error.log

direct console to ok.log, and errors to error.log for example

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

无声无音无过去 2024-08-16 01:22:56
[your command] > ok.log 2> error.log
[your command] > ok.log 2> error.log
じ违心 2024-08-16 01:22:56

我发现做到这一点的唯一方法是使用 UNIX 的某些变体tee 命令。你会像这样使用它:

[your command] 2> error.log | tee ok.log

The only way that I have found to do this is by using some variant of the UNIX tee command. You would use it like:

[your command] 2> error.log | tee ok.log
不奢求什么 2024-08-16 01:22:56

好的,如果您的目标是将输出拆分为标准输出和文件,请查看 这个问题

OK, if your goal is to split output into both stdout and a file, take a look at this SO question.

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