Monday, January 29, 2018

linux - How to redirect output to a file and stdout



In bash, calling foo would display any output from that command on the stdout.



Calling foo > output would redirect any output from that command to the file specified (in this case 'output').



Is there a way to redirect output to a file and have it display on stdout?



Answer



The command you want is named tee:



foo | tee output.file


For example, if you only care about stdout:



ls -a | tee output.file



If you want to include stderr, do:



program [arguments...] 2>&1 | tee outfile


2>&1 redirects channel 2 (stderr/standard error) into channel 1 (stdout/standard output), such that both is written as stdout. It is also directed to the given output file as of the tee command.



Furthermore, if you want to append to the log file, use tee -a as:




program [arguments...] 2>&1 | tee -a outfile

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...