- Unsupervised Learning
- Posts
- Stdout, Stderr, and Tee
Stdout, Stderr, and Tee
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.