将 unrar.exe 的输出记录到文本文件(批处理脚本)
我正在编写一个提取文件的批处理脚本,现在想将 unrar.exe 的输出记录到文本文件中。我想到的输出是由于档案损坏等导致的失败,或者只是操作成功。
关于如何解决这个问题有什么想法吗?
提前致谢!
I am writing a batch script that extracts files and would now like to log the output from unrar.exe to a text file. The output I have in mind are things like failure due to corrupted archives etc. or simply that the operation was successful.
Any ideas on how to solve this?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用重定向:
也可以重定向 stderr:
You use redirection:
To also redirect stderr:
仅 STDOUT
unrar>"output.txt"
仅错误 (ERROUT)
unrar 2>"errors.txt"
STDOUT 和 ERROUT
unrar 2>& 1 "both.txt"
或两者都在单独的文件中:
unrar 2>"errors.txt" >"output.txt"
Just the STDOUT
unrar>"output.txt"
Only the errors (ERROUT)
unrar 2>"errors.txt"
Both STDOUT and ERROUT
unrar 2>&1 "both.txt"
Or both in separate files:
unrar 2>"errors.txt" >"output.txt"