How to redirect stderr from Windows command prompt to a text file?
- by eSKay
This article explains how redirection can be used to save the output to a file from Windows command line.
But, this only redirects the stdout stream to the file.
How to redirect the stderr stream to a file?
[I am compiling a program using g++ and getting some 1000 errors. I just want to dump those errors to a file]