up vote 3 down vote favorite
share [g+] share [fb]

I'm looking for a way to redirect all the stderr streams in interactive bash (ideally to its calling parent process).

I don't want to redirect stderr stream from each individual command, which I could do by appending 2> a_file to each command.

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.

Any ideas?

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 ?

link|improve this question

67% accept rate
You mention python in a comment, could you show what code you're using to create these SSH streams. Are you not using popen/popen2/popen3? – jtimberman Sep 18 '08 at 18:07
feedback

7 Answers

You could launch a new bash process redirecting the stderr of that process:

  $ bash -i 2> stderr.log
  $
link|improve this answer
feedback

Use the exec builtin in bash:

exec 2> /tmp/myfile

link|improve this answer
feedback

Try your commands in doublequotes, like so:

ssh remotehost "command" 2>~/stderr

Tested on my local system using a nonexistant file on the remote host.

$ ssh remotehost "tail x;head x" 2>~/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
link|improve this answer
If you type the command directly after ssh, you aren't loading a shell on the remote host. Command is executed directly through the ssh channel. I'm using paramiko in python but this is the same. My problem is that I need an interactive shell to execute many commands and still get stderr. – Grégoire Cachet Sep 17 '08 at 16:08
feedback

I don't see your problem it works as designed:

$ ssh remotehost 'ls nosuchfile; ls /etc/passwd' >/tmp/stdout 2>/tmp/stderr 
$ cat /tmp/stdout  
/etc/passwd 
$ cat /tmp/stderr 
nosuchfile not found
link|improve this answer
feedback

That's ok if I want to redirect it to a file. But the parent process has to be a shell because 2> syntax only works on shell. In my case it is a raw system command.

And what if I want to get it on stderr of the parent process?

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 ?

link|improve this answer
feedback

Tried ssh -t to create a pseudo-TTY at the remote end?

link|improve this answer
feedback

2 things:

  1. Using 2>&1 in a remote ssh command results in the error ending up inside the local tarfile, resulting in a 'broken' backup.
  2. If you want to apply a redirect on the other side of the ssh, remember to escape the redirect command.

My suggestion would be to redirect stderr on the remote side to a file and pick it up later, in case of an error.

example:

ssh -t remotehost tar -cf - /mnt/backup 2\>backup.err > localbackup.tar
EXITSTATUS=$?
if [ $EXITSTATUS != "0" ] then 
  echo Error occurred!
  ssh remotehost cat backup.err >localbackup.errors
  cat localbackup.errors
  ssh remotehost rm backup.err 
else 
  echo Backup completed successfully!
  ssh remotehost rm backup.err 
fi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.