How can I gzip standard in to a file and also print standard in to standard out? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:40:26Z http://stackoverflow.com/feeds/question/570984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out 5 How can I gzip standard in to a file and also print standard in to standard out? Ross Rogers 2009-02-20T19:49:11Z 2009-02-20T20:23:58Z <p>I want to execute a command, have the output of that command get gzip'd on the fly, and also echo/tee out the output of that command.</p> <p>i.e., something like:</p> <pre><code>echo "hey hey, we're the monkees" | gzip --stdout &gt; my_log.gz </code></pre> <p>Except when the line executes, I want to see this on standard out:</p> <pre><code>hey hey, we're the monkees </code></pre> http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out/570991#570991 20 Answer by Paul Tomblin for How can I gzip standard in to a file and also print standard in to standard out? Paul Tomblin 2009-02-20T19:51:17Z 2009-02-20T19:51:17Z <pre><code>echo "hey hey, we're the monkees" | tee /dev/tty | gzip --stdout &gt; my_log.gz </code></pre> http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out/570999#570999 10 Answer by Paul Dixon for How can I gzip standard in to a file and also print standard in to standard out? Paul Dixon 2009-02-20T19:53:38Z 2009-02-20T20:23:58Z <p>Have a nice cup of <a href="http://www.gnu.org/software/coreutils/manual/html_node/tee-invocation.html" rel="nofollow">tee</a>!</p> <blockquote> <p>The tee command copies standard input to standard output and also to any files given as arguments. This is useful when you want not only to send some data down a pipe, but also to save a copy</p> </blockquote> <p>As I'm having a slow afternoon, here's some gloriously illustrative ascii-art...</p> <pre><code> +-----+ +---+ +-----+ stdin -&gt; |cmd 1| -&gt; stdout -&gt; |tee| -&gt; stdout -&gt; |cmd 2| +-----+ +---+ +-----+ | v file </code></pre> <p>As <a href="#571039" rel="nofollow">greyfade demonstrates in another answer</a> the 'file' need not be a regular file, but could be FIFO letting you pipe that tee'd output into a third command.</p> <pre><code> +-----+ +---+ +-----+ stdin -&gt; |cmd 1| -&gt; stdout -&gt; |tee| -&gt; stdout -&gt; |cmd 2| +-----+ +---+ +-----+ | v FIFO | v +-----+ |cmd 3| +-----+ </code></pre> http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out/571039#571039 12 Answer by greyfade for How can I gzip standard in to a file and also print standard in to standard out? greyfade 2009-02-20T20:05:32Z 2009-02-20T20:19:15Z <p>Another way (assuming Bash):</p> <pre><code>echo "hey hey, we're the monkees" | tee &gt;(gzip --stdout &gt; my_log.gz) </code></pre> <p>The admittedly strange <code>&gt;()</code> syntax basically does the following:</p> <ul> <li>Create new FIFO (usually something in <code>/tmp/</code>)</li> <li>Execute command inside <code>()</code> and bind the FIFO to stdin on that subcommand</li> <li>Return FIFO filename to command line.</li> </ul> <p>What <code>tee</code> ends up seeing, then, is something like:</p> <pre><code>tee /tmp/arjhaiX4 </code></pre> <p>All <code>gzip</code> sees is its standard input.</p> <p>See <a href="http://www.gnu.org/software/bash/manual/bashref.html" rel="nofollow">man bash</a> for details. It's in the section on <a href="http://www.gnu.org/software/bash/manual/bashref.html#Redirections" rel="nofollow">redirection</a>.</p>