Understanding piping std stin stderr
A nice summary here:
http://learnlinux.tsf.org.za/courses/build/shell-scripting/ch01s04.html
So if you were running a program and wanted stderr and stdout to go to a log file
make add 2>&1 | tee test
http://learnlinux.tsf.org.za/courses/build/shell-scripting/ch01s04.html

So if you were running a program and wanted stderr and stdout to go to a log file
make add 2>&1 | tee test
