Redirect stderr and stdout in a bash script - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:17:15Z http://stackoverflow.com/feeds/question/637827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script 7 Redirect stderr and stdout in a bash script flybywire 2009-03-12T09:14:05Z 2009-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#637834 0 Answer by Dev er dev for Redirect stderr and stdout in a bash script Dev er dev 2009-03-12T09:16:20Z 2009-03-12T09:24:02Z <pre><code>do_something 2&gt;&amp;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#637837 2 Answer by Guðmundur H for Redirect stderr and stdout in a bash script Guðmundur H 2009-03-12T09:17:03Z 2009-03-12T09:33:48Z <pre><code>bash your_script.sh 1&gt;file.log 2&gt;&amp;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>&amp;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>&amp;1 1>file.log</code> doesn't work.</p> http://stackoverflow.com/questions/637827/redirect-stderr-and-stdout-in-a-bash-script/637838#637838 8 Answer by f3lix for Redirect stderr and stdout in a bash script f3lix 2009-03-12T09:17:20Z 2009-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&gt;file.log 2&gt;&amp;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#637839 3 Answer by dirkgently for Redirect stderr and stdout in a bash script dirkgently 2009-03-12T09:17:25Z 2009-09-01T14:29:01Z <pre><code>yourcommand &amp;&gt;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#781623 0 Answer by log-control for Redirect stderr and stdout in a bash script log-control 2009-04-23T13:14:35Z 2009-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&gt;&amp;1 &gt; &gt;(tee -a /dev/fd/3 | logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_OUT" ) exec 2&gt; &gt;(logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_ERR" ) </code></pre> <p>It is related: Writing stdOut &amp; 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#829798 1 Answer by Mark for Redirect stderr and stdout in a bash script Mark 2009-05-06T14:12:30Z 2009-05-06T14:12:30Z <p>Curiously, this works:</p> <pre><code>yourcommand &amp;&gt; filename </code></pre> <p>But this gives a syntax error:</p> <pre><code>yourcommand &amp;&gt;&gt; filename syntax error near unexpected token `&gt;' </code></pre> <p>You have to use:</p> <pre><code>yourcommand 1&gt;&gt; filename 2&gt;&amp;1 </code></pre>