How to redirect output to a file and stdout - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:48:06Zhttp://stackoverflow.com/feeds/question/418896http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout4How to redirect output to a file and stdoutSCdF2009-01-07T01:45:42Z2009-01-07T02:47:44Z
<p>In bash, calling <code>foo</code> would display any output from that command on the stdout.</p>
<p>Calling <code>foo > output</code> would redirect any output from that command to the file specified (in this case 'output').</p>
<p>Is there a way to redirect output to a file <em>and</em> have it display on stdout?</p>
http://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout/418899#41889916Answer by Zoredache for How to redirect output to a file and stdoutZoredache2009-01-07T01:48:08Z2009-01-07T01:48:08Z<p>The command you want is named <strong><a href="http://linux.die.net/man/1/tee" rel="nofollow">tee</a></strong></p>
<p>ls -lR / | tee output.file</p>
http://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout/418901#4189011Answer by Chuck Phillips for How to redirect output to a file and stdoutChuck Phillips2009-01-07T01:50:22Z2009-01-07T01:50:22Z<p>'tail -f output' should work.</p>
http://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout/419026#4190260Answer by mkal for How to redirect output to a file and stdoutmkal2009-01-07T02:47:44Z2009-01-07T02:47:44Z<p>tee is perfect for this, but this will also do the job</p>
<p>ls -lr / > output | cat output</p>