I often need to call a command line app but I don’t want it to output anything. I just want it to do its job and then die quietly. Here’s how to silence an app… stick the following on the end of the command:
>nul 2>&1
Done.
I often need to call a command line app but I don’t want it to output anything. I just want it to do its job and then die quietly. Here’s how to silence an app… stick the following on the end of the command:
>nul 2>&1
Done.