使用 DOS/CMD/批处理文件如何显示控制台输出,并将 STDOUT 和 STDERR 流重定向到文件?
例如,将控制台直接指向 ok.log,将错误指向 error.log
direct console to ok.log, and errors to error.log for example
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现做到这一点的唯一方法是使用 UNIX 的某些变体
tee
命令。你会像这样使用它: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:好的,如果您的目标是将输出拆分为标准输出和文件,请查看 这个问题。
OK, if your goal is to split output into both stdout and a file, take a look at this SO question.