If I want to ignore stdout of a command, I do this on *nix:
myprog > /dev/nullHow do I achieve the same on Windows (in cmd or a batch file)?
1 Answer
Use NUL:
myprog > NUL
If I want to ignore stdout of a command, I do this on *nix:
myprog > /dev/nullHow do I achieve the same on Windows (in cmd or a batch file)?
Use NUL:
myprog > NUL