I am Charmie

メモとログ

command

unix command: tee

tee command is used to save output of a program shown on a terminal. For example, the following command saves result of ls command as a file text.txt ls | tee test.txt To save error output, add the following option: make 2>&1 | tee make.log