- bash, nested commands and redirects
- top -b -d 1 | grep myprocess.exe
- top -b -d 1 | grep myprocess.exe > output.log
- previous_pipeline | tee output.log
- top -b -d 1 | grep myprocess.exe | tee output.log
- top -b -d 1 | grep myprocess.exe | tee output.log > /dev/null