Stdout, Stderr, and Tee

shutterstock_10437106_rs

My friend Jason just posted a really cool command line trick that lets you log stderr and stdout to different files while still having them visible in the console.

($command | tee /logs/stdout.txt) 3>&1 1>&2 2>&3 
| tee /logs/stderr.txt

Very cool.

Related posts: