Redirect StdErr to Stdin in Batch and Shell Scripts
On windows command prompt : mybatch.bat 1> log.txt 2>&1 This redirects stdin to log.txt and stderr to stdin On Bash Linux Shell: grep * &> allout.txt
Java Talks , Tips Tutorials and sample codes.