How do I write stderr to a file while using "tee" with a pipe? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:16:09Zhttp://stackoverflow.com/feeds/question/692000http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/692000/how-do-i-write-stderr-to-a-file-while-using-tee-with-a-pipe4How do I write stderr to a file while using "tee" with a pipe?jparanich2009-03-28T01:53:04Z2009-03-28T16:29:25Z
<p>Hi, I have the below command line argument which will print the output of aaa.sh to the screen while also writing <i>stdout</i> to bbb.out; however I would also like to write <i>stderr</i> to a file ccc.out. Any suggestions on how to modify the below piece? Thanks!</p>
<pre><code>./aaa.sh | tee ./bbb.out
</code></pre>
<p><b>Update:</b> stdout and stderr should still both be printed to the screen, regardless.</p>
http://stackoverflow.com/questions/692000/how-do-i-write-stderr-to-a-file-while-using-tee-with-a-pipe/692009#6920096Answer by Josh Kelley for How do I write stderr to a file while using "tee" with a pipe?Josh Kelley2009-03-28T01:57:50Z2009-03-28T03:40:18Z<p>To redirect stderr to a file, display stdout to screen, and also save stdout to a file:</p>
<pre>./aaa.sh 2>ccc.out | tee ./bbb.out</pre>
<p><strong>EDIT</strong>: To display both stderr and stdout to screen and also save both to a file, you can use bash's <a href="http://tldp.org/LDP/abs/html/io-redirection.html" rel="nofollow">I/O redirection</a>:</p>
<pre><code>#!/bin/bash
# Create a new file descriptor 4, pointed at the file
# which will receive stderr.
exec 4<>ccc.out
# Also print the contents of this file to screen.
tail -f ccc.out &
# Run the command; tee stdout as normal, and send stderr
# to our file descriptor 4.
./aaa.sh 2>&4 | tee bbb.out
# Clean up: Close file descriptor 4 and kill tail -f.
exec 4>&-
kill %1
</code></pre>
http://stackoverflow.com/questions/692000/how-do-i-write-stderr-to-a-file-while-using-tee-with-a-pipe/692014#6920142Answer by ChristopheD for How do I write stderr to a file while using "tee" with a pipe?ChristopheD2009-03-28T02:00:05Z2009-03-28T02:00:05Z<p>If using bash:</p>
<pre><code># Redirect standard out and standard error separately
% cmd >stdout-redirect 2>stderr-redirect
# Redirect standard error and out together
% cmd >stdout-redirect 2>&1
# Merge standard error with standard out and pipe
% cmd 2>&1 |cmd2
</code></pre>
<p>Credit (not answering from the top of my head) goes here: <a href="http://www.cygwin.com/ml/cygwin/2003-06/msg00772.html" rel="nofollow">http://www.cygwin.com/ml/cygwin/2003-06/msg00772.html</a></p>
http://stackoverflow.com/questions/692000/how-do-i-write-stderr-to-a-file-while-using-tee-with-a-pipe/692407#6924076Answer by lhunath for How do I write stderr to a file while using "tee" with a pipe?lhunath2009-03-28T07:54:59Z2009-03-28T07:54:59Z<p>I'm assuming you want to still see STDERR and STDOUT on the terminal. You could go for Josh Kelley's answer, but I find keeping a <code>tail</code> around in the background which outputs your log file very hackish and cludgy. Notice how you need to keep an exra FD and do cleanup afterward by killing it and technically should be doing that in a <code>trap '...' EXIT</code>.</p>
<p>There is a better way to do this, and you've already discovered it: <code>tee</code>.</p>
<p>Only, instead of just using it for your stdout, have a tee for stdout and one for stderr. How will you accomplish this? Process substitution and file redirection:</p>
<pre><code>command > >(tee stdout.log) 2> >(tee stderr.log >&2)
</code></pre>
<p>Let's split it up and explain:</p>
<pre><code>> >(..)
</code></pre>
<p><code>>(...)</code> (process substitution) creates a FIFO and lets <code>tee</code> listen on it. Then, it uses <code>></code> (file redirection) to redirect the STDOUT of <code>command</code> to the FIFO that your first <code>tee</code> is listening on.</p>
<p>Same thing for the second:</p>
<pre><code>2> >(tee stderr.log >&2)
</code></pre>
<p>We use process substitution again to make a <code>tee</code> process that reads from STDIN and dumps it into <code>stderr.log</code>. <code>tee</code> outputs its input back on STDOUT, but since its input is our STDERR, we want to redirect <code>tee</code>'s STDOUT to our STDERR again. Then we use file redirection to redirect <code>command</code>'s STDERR to the FIFO's input (<code>tee</code>'s STDIN).</p>
<p>See <a href="http://mywiki.wooledge.org/BashGuide/TheBasics/InputAndOutput" rel="nofollow">http://mywiki.wooledge.org/BashGuide/TheBasics/InputAndOutput</a></p>