ログを取る時に、標準出力と同時にファイルに保存したい場合に用いる。
$ echo "test" | tee test.txt
$ echo "test" 2>&1 | tee test.txt
$ echo "test" 2>&1 | tee -a test.txt