show/hide this revision's text 2 more precisions

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 ?

show/hide this revision's text 1

That's ok if I want to redirect it to a file.

But 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 ?