Redirect stderr and stdout in a bash script - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T17:17:15Zhttp://stackoverflow.com/feeds/question/637827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script7Redirect stderr and stdout in a bash scriptflybywire2009-03-12T09:14:05Z2009-09-01T14:29:24Z
<p>I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?</p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/637834#6378340Answer by Dev er dev for Redirect stderr and stdout in a bash scriptDev er dev2009-03-12T09:16:20Z2009-03-12T09:24:02Z<pre><code>do_something 2>&1 | tee -a some_file
</code></pre>
<p>This is going to redirect everything to file <strong>and</strong> print it to stdout.</p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/637837#6378372Answer by Guðmundur H for Redirect stderr and stdout in a bash scriptGuðmundur H2009-03-12T09:17:03Z2009-03-12T09:33:48Z<pre><code>bash your_script.sh 1>file.log 2>&1
</code></pre>
<p><code>1>file.log</code> instructs the shell to send STDOUT to the file <code>file.log</code>, and <code>2>&1</code> tells it to redirect STDERR (file descriptor 2) to STDOUT (file descriptor 1).</p>
<p><strong>Note:</strong> The order matters as liw.fi pointed out, <code>2>&1 1>file.log</code> doesn't work.</p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/637838#6378388Answer by f3lix for Redirect stderr and stdout in a bash scriptf3lix2009-03-12T09:17:20Z2009-03-12T09:47:51Z<p>You can redirect <em>stderr</em> to <em>stdout</em> and the <em>stdout</em> into a file:</p>
<pre><code>some_command 1>file.log 2>&1
</code></pre>
<p>See <a href="http://tldp.org/LDP/abs/html/io-redirection.html" rel="nofollow">http://tldp.org/LDP/abs/html/io-redirection.html</a></p>
<p>EDIT: changed the order as pointed out in the comments</p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/637839#6378393Answer by dirkgently for Redirect stderr and stdout in a bash scriptdirkgently2009-03-12T09:17:25Z2009-09-01T14:29:01Z<pre><code>yourcommand &>filename
</code></pre>
<p>(redirects both <code>stdout</code> and <code>stderr</code> to filename).</p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/781623#7816230Answer by log-control for Redirect stderr and stdout in a bash scriptlog-control2009-04-23T13:14:35Z2009-04-23T13:14:35Z<pre><code>LOG_FACILITY="local7.notice"
LOG_TOPIC="my-prog-name"
LOG_TOPIC_OUT="$LOG_TOPIC-out[$$]"
LOG_TOPIC_ERR="$LOG_TOPIC-err[$$]"
exec 3>&1 > >(tee -a /dev/fd/3 | logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_OUT" )
exec 2> >(logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_ERR" )
</code></pre>
<p>It is related: Writing stdOut & stderr to syslog.</p>
<p>It almost work, but not from xinted ;( </p>
http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/829798#8297981Answer by Mark for Redirect stderr and stdout in a bash scriptMark2009-05-06T14:12:30Z2009-05-06T14:12:30Z<p>Curiously, this works:</p>
<pre><code>yourcommand &> filename
</code></pre>
<p>But this gives a syntax error:</p>
<pre><code>yourcommand &>> filename
syntax error near unexpected token `>'
</code></pre>
<p>You have to use:</p>
<pre><code>yourcommand 1>> filename 2>&1
</code></pre>