How to redirect output to a file and stdout - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:48:06Z http://stackoverflow.com/feeds/question/418896 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout 4 How to redirect output to a file and stdout SCdF 2009-01-07T01:45:42Z 2009-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 &gt; 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#418899 16 Answer by Zoredache for How to redirect output to a file and stdout Zoredache 2009-01-07T01:48:08Z 2009-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#418901 1 Answer by Chuck Phillips for How to redirect output to a file and stdout Chuck Phillips 2009-01-07T01:50:22Z 2009-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#419026 0 Answer by mkal for How to redirect output to a file and stdout mkal 2009-01-07T02:47:44Z 2009-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>