This question already has an answer here:
- How to redirect stderr to null in cmd.exe 1 answer
I want to suppress the output of my script running under DOS, similar to the following under a *nix environment:
$ command 1>/dev/null
How can I do this?