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.
我想抑制在 DOS 下运行的脚本的输出,类似于 *nix 环境下的以下内容:
$ command 1>/dev/null
我怎样才能做到这一点?
它应该>NUL在 DOS 和 Windows 控制台上。
>NUL
你可以这样使用
command >nul: 2>nul:
这是使用> NUL的示例
copy mfc42d.dll $windir\system32 > nul regsvr32 $windir\system32\mfc42d.dll /s > nul