让 robocopy 完全静默地复制

让 robocopy 完全静默地复制

是否可以以某种“完全静默”模式运行 robocopy?

答案1

通过将 stdout 和 stderr 重定向到特殊文件“nul”,可以使任何命令行实用程序完全静音。这是 Windows 上相当于 *nix 系统上的 /dev/null 的程序。

command >nul (stdout is not echoed)

command 2>nul (stderr is not echoed)

command >nul 2>&1 (neither stdout nor stderr is echoed)

后者是您想要使其完全静音的。

相关内容