将 unrar.exe 的输出记录到文本文件(批处理脚本)

发布于 2024-12-06 08:19:23 字数 119 浏览 2 评论 0原文

我正在编写一个提取文件的批处理脚本,现在想将 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 技术交流群。

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

发布评论

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

评论(2

椒妓 2024-12-13 08:19:23

您可以使用重定向:

unrar > logfile.txt

也可以重定向 stderr:

unrar > logfile.txt 2>&1

You use redirection:

unrar > logfile.txt

To also redirect stderr:

unrar > logfile.txt 2>&1
狼性发作 2024-12-13 08:19:23

仅 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"

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