#PowerShell [[Bash]]の`/dev/null`みたいなことをしたい場合は`$null`を利用する。 ```powershel # 標準出力を捨てる > $null # 標準エラー出力を捨てる 2> $null ```