Windows

Windows:將 stdout 和 stderror 重定向為空

  • February 23, 2020

我有一個正在執行的命令會產生大量輸出,我想在不寫入文件的情況下使輸出靜音。我已使用以下內容將所有輸出發送到文件,但同樣我不想要任何文件輸出:

command > out.txt 2>&1

我以前command > /dev/null在我的 CentOS 機器上使用過,但我找不到適用於 windows 的類似東西。

你想要command > nul 2>&1

你要command > $null 2>&1

nul僅適用於命令提示符,而$null適用於 powershell。

引用自:https://serverfault.com/questions/132963