Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
-inul命令防止错误框出现在 WinRar 命令行中。7Gz.exe 是否有任何等效命令?
-inul
7-Zip将其所有消息写入stdout,包括错误和警告消息。这意味着您可以通过将 stdout 重定向到文件来收集它的所有输出。
7-Zip
stdout
如下命令会将所有输出(包括来自 stderr)重定向到 Log.txt:
7za a Test.7z *.* >Log.txt 2>&1