我想抑制在DOS下运行的脚本的输出,类似于* nix环境下的以下内容:
$ command 1>/dev/null
我该怎么做?
答案 0 :(得分:19)
在DOS和Windows控制台上都应该是>NUL
。
答案 1 :(得分:0)
以下是使用>的示例NUL
copy mfc42d.dll $windir\system32 > nul
regsvr32 $windir\system32\mfc42d.dll /s > nul
答案 2 :(得分:0)
您可以这样使用
command >nul: 2>nul: