How to redirect all stderr in bash? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T22:16:37Z http://stackoverflow.com/feeds/question/30066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash 2 How to redirect all stderr in bash? Grégoire Cachet 2008-08-27T13:19:17Z 2009-04-08T19:39:07Z <p>Hey!</p> <p>I'm looking for a way to redirect all the stderr streams in interactive bash (ideally to its calling parent process).</p> <p>I don't want to redirect stderr stream from each individual command, which I could do by appending <code>2&gt; a_file</code> to each command.</p> <p>By default, these stderr streams are redirected to the stdout of an interactive bash. I would like to get them on the stderr of this interactive bash process in order to prevent my stdout to be polluted by error messages and be able to treat them separatly.</p> <p>Any ideas?</p> <p>I still haven't found an answer ... But maybe it's actually a tty parameter. Does anybody knows something about tty/interactive shell responsibility for handling stderr ?</p> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/30085#30085 0 Answer by caerwyn for How to redirect all stderr in bash? caerwyn 2008-08-27T13:27:48Z 2008-08-27T13:27:48Z <p>You could launch a new bash process redirecting the stderr of that process:</p> <pre><code> $ bash -i 2&gt; stderr.log $ </code></pre> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/30088#30088 1 Answer by gavrie for How to redirect all stderr in bash? gavrie 2008-08-27T13:28:17Z 2008-08-27T13:28:17Z <p>Use the <code>exec</code> builtin in bash:</p> <p><code>exec 2&gt; /tmp/myfile</code></p> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/30102#30102 0 Answer by GrĂ©goire Cachet for How to redirect all stderr in bash? GrĂ©goire Cachet 2008-08-27T13:31:45Z 2008-08-27T13:40:48Z <p>That's ok if I want to redirect it to a file. But the parent process has to be a shell because <code>2&gt;</code> syntax only works on shell. In my case it is a raw system command.</p> <p>And what if I want to get it on stderr of the parent process?</p> <p>Here is my use case: I'm running an interactive bash over a ssh channel to execute commands on remote servers. My ssh channel has stdin, stderr and stdout. How do I get errors of remote commands on the stderr of the SSH channel instead of stdout ?</p> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/75132#75132 0 Answer by jtimberman for How to redirect all stderr in bash? jtimberman 2008-09-16T18:00:37Z 2008-09-16T18:00:37Z <p>Try your commands in doublequotes, like so:</p> <pre><code>ssh remotehost "command" 2&gt;~/stderr </code></pre> <p>Tested on my local system using a nonexistant file on the remote host.</p> <pre><code>$ ssh remotehost "tail x;head x" 2&gt;~/stderr $ cat stderr tail: cannot open `x' for reading: No such file or directory head: cannot open `x' for reading: No such file or directory </code></pre> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/84426#84426 1 Answer by Gunstick for How to redirect all stderr in bash? Gunstick 2008-09-17T15:23:52Z 2008-09-17T15:23:52Z <p>I don't see your problem it works as designed:</p> <pre><code>$ ssh remotehost 'ls nosuchfile; ls /etc/passwd' &gt;/tmp/stdout 2&gt;/tmp/stderr $ cat /tmp/stdout /etc/passwd $ cat /tmp/stderr nosuchfile not found </code></pre> http://stackoverflow.com/questions/30066/how-to-redirect-all-stderr-in-bash/731499#731499 0 Answer by crb for How to redirect all stderr in bash? crb 2009-04-08T19:39:07Z 2009-04-08T19:39:07Z <p>Tried <code>ssh -t</code> to create a pseudo-TTY at the remote end?</p>