What's a simple method to dump pipe input to a file? (Linux) - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T20:24:42Zhttp://stackoverflow.com/feeds/question/76700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux0What's a simple method to dump pipe input to a file? (Linux)Alex Fort2008-09-16T20:33:39Z2009-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#767192Answer by JBB for What's a simple method to dump pipe input to a file? (Linux)JBB2008-09-16T20:35:16Z2008-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#7672114Answer by Stephen Deken for What's a simple method to dump pipe input to a file? (Linux)Stephen Deken2008-09-16T20:35:22Z2008-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#767314Answer by Commodore Jaeger for What's a simple method to dump pipe input to a file? (Linux)Commodore Jaeger2008-09-16T20:35:58Z2008-09-16T20:35:58Z<pre><code>cat > FILENAME
</code></pre>
http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76735#767354Answer by Brian Mitchell for What's a simple method to dump pipe input to a file? (Linux)Brian Mitchell2008-09-16T20:36:22Z2008-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#767364Answer by Isak Savo for What's a simple method to dump pipe input to a file? (Linux)Isak Savo2008-09-16T20:36:22Z2008-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!" > the-file.txt
</code></pre>
http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76741#767410Answer by Mo for What's a simple method to dump pipe input to a file? (Linux)Mo2008-09-16T20:36:39Z2008-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>>> ~file</code></p>
<p>For example</p>
<pre><code>echo "Foobar" >> /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#767421Answer by terminus for What's a simple method to dump pipe input to a file? (Linux)terminus2008-09-16T20:36:50Z2008-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 > $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#767480Answer by BCS for What's a simple method to dump pipe input to a file? (Linux)BCS2008-09-16T20:37:05Z2008-09-16T20:37:05Z<p>if you don't care about outputting the result</p>
<pre><code>cat - > filename
</code></pre>
<p>or</p>
<pre><code>cat > filename
</code></pre>
http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76754#767540Answer by sirprize for What's a simple method to dump pipe input to a file? (Linux)sirprize2008-09-16T20:37:40Z2008-09-16T20:37:40Z<p>If you want a shell script, try this:</p>
<pre><code>#!/bin/sh
exec cat >/path/to/file
</code></pre>
http://stackoverflow.com/questions/76700/whats-a-simple-method-to-dump-pipe-input-to-a-file-linux/76763#767631Answer by Liudvikas Bukys for What's a simple method to dump pipe input to a file? (Linux)Liudvikas Bukys2008-09-16T20:38:25Z2008-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#785150Answer by Scott for What's a simple method to dump pipe input to a file? (Linux)Scott2008-09-17T00:03:12Z2008-09-17T00:03:12Z<p><< command >> | tee < file >></p>
<p>This will also show the output.</p>