What's a simple method to dump pipe input to a file? (Linux) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T20:24:42Z http://stackoverflow.com/feeds/question/76700 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux 0 What's a simple method to dump pipe input to a file? (Linux) Alex Fort 2008-09-16T20:33:39Z 2009-04-08T19:26:05Z <p>I'm looking for a little shell script that will take anything piped into it, and dump it to a file.. for email debugging purposes. Any ideas?</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76719#76719 2 Answer by JBB for What's a simple method to dump pipe input to a file? (Linux) JBB 2008-09-16T20:35:16Z 2008-09-16T20:35:16Z <p>Use Procmail. Procmail is your friend. Procmail is made for this sort of thing.</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76721#76721 14 Answer by Stephen Deken for What's a simple method to dump pipe input to a file? (Linux) Stephen Deken 2008-09-16T20:35:22Z 2008-09-16T20:35:22Z <p>The unix command tee does this.</p> <pre><code>man tee </code></pre> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76731#76731 4 Answer by Commodore Jaeger for What's a simple method to dump pipe input to a file? (Linux) Commodore Jaeger 2008-09-16T20:35:58Z 2008-09-16T20:35:58Z <pre><code>cat &gt; FILENAME </code></pre> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76735#76735 4 Answer by Brian Mitchell for What's a simple method to dump pipe input to a file? (Linux) Brian Mitchell 2008-09-16T20:36:22Z 2008-09-16T20:36:22Z <p>The standard unix tool tee can do this. It copies input to output, while also logging it to a file.</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76736#76736 4 Answer by Isak Savo for What's a simple method to dump pipe input to a file? (Linux) Isak Savo 2008-09-16T20:36:22Z 2008-09-16T20:36:22Z <p>You're not alone in needing something similar.. in fact, someone wanted i decades ago and developed <a href="http://linux.die.net/man/1/tee" rel="nofollow">tee</a> :-)</p> <p>Of course, you can redirect stdout directly to a file in any shell using the > character:</p> <pre><code>echo "hello, world!" &gt; the-file.txt </code></pre> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76741#76741 0 Answer by Mo for What's a simple method to dump pipe input to a file? (Linux) Mo 2008-09-16T20:36:39Z 2008-09-16T20:36:39Z <p>Huh? I guess, I don't get the question?</p> <p>Can't you just end your pipe into a <code>&gt;&gt; ~file</code></p> <p>For example</p> <pre><code>echo "Foobar" &gt;&gt; /home/mo/dumpfile </code></pre> <p>will append Foobar to the dumpfile (and create dumpfile if necessary). No need for a shell script... Is that what you were looking for?</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76742#76742 1 Answer by terminus for What's a simple method to dump pipe input to a file? (Linux) terminus 2008-09-16T20:36:50Z 2008-09-16T20:36:50Z <p>If you want to analyze it in the script:</p> <pre><code>while /bin/true; do read LINE echo $LINE &gt; $OUTPUT done </code></pre> <p>But you can simply use cat. If cat gets something on the stdin, it will echo it to the stdout, so you'll have to pipe it to cat >$OUTPUT. These will do the same. The second works for binary data also.</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76748#76748 0 Answer by BCS for What's a simple method to dump pipe input to a file? (Linux) BCS 2008-09-16T20:37:05Z 2008-09-16T20:37:05Z <p>if you don't care about outputting the result</p> <pre><code>cat - &gt; filename </code></pre> <p>or</p> <pre><code>cat &gt; filename </code></pre> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76754#76754 0 Answer by sirprize for What's a simple method to dump pipe input to a file? (Linux) sirprize 2008-09-16T20:37:40Z 2008-09-16T20:37:40Z <p>If you want a shell script, try this:</p> <pre><code>#!/bin/sh exec cat &gt;/path/to/file </code></pre> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76763#76763 1 Answer by Liudvikas Bukys for What's a simple method to dump pipe input to a file? (Linux) Liudvikas Bukys 2008-09-16T20:38:25Z 2008-09-16T20:38:25Z <p>If exim or sendmail is what's writing into the pipe, then procmail is a good answer because it'll give you file locking/serialization and you can put it all in the same file.</p> <p>If you just want to write into a file, then - tee > /tmp/log.$$ or - cat > /tmp/log.$$ might be good enough.</p> http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/78515#78515 0 Answer by Scott for What's a simple method to dump pipe input to a file? (Linux) Scott 2008-09-17T00:03:12Z 2008-09-17T00:03:12Z <p>&lt;&lt; command >> | tee &lt; file >></p> <p>This will also show the output.</p>