How can I gzip standard in to a file and also print standard in to standard out? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:40:26Zhttp://stackoverflow.com/feeds/question/570984http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out5How can I gzip standard in to a file and also print standard in to standard out?Ross Rogers2009-02-20T19:49:11Z2009-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 > 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#57099120Answer by Paul Tomblin for How can I gzip standard in to a file and also print standard in to standard out?Paul Tomblin2009-02-20T19:51:17Z2009-02-20T19:51:17Z<pre><code>echo "hey hey, we're the monkees" | tee /dev/tty | gzip --stdout > 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#57099910Answer by Paul Dixon for How can I gzip standard in to a file and also print standard in to standard out?Paul Dixon2009-02-20T19:53:38Z2009-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 -> |cmd 1| -> stdout -> |tee| -> stdout -> |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 -> |cmd 1| -> stdout -> |tee| -> stdout -> |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#57103912Answer by greyfade for How can I gzip standard in to a file and also print standard in to standard out?greyfade2009-02-20T20:05:32Z2009-02-20T20:19:15Z<p>Another way (assuming Bash):</p>
<pre><code>echo "hey hey, we're the monkees" | tee >(gzip --stdout > my_log.gz)
</code></pre>
<p>The admittedly strange <code>>()</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>