I am creating a Subversion post-commit hook. I need to force the output of one command to STDERR, so that the post-commit hook will marshall the message back to the client.
How can I force STDOUT to STDERR?
In this simplified example, the file foo exists, but bar does not.
# touch foo
# ls foo bar
ls: bar: No such file or directory
foo
I want to send STDOUT to STDERR. I assumed that I could do this with >&2, but it doesn't seem to be working.
I was expecting following example to redirect STDOUT to STDERR, and that /tmp/test would would contain the output and error for the command. But instead, it appears that STDOUT is never redirected to STDERR, and thus /tmp/test only contains the error from the command.
# ls foo bar >&2 2>/tmp/test
foo
# cat /tmp/test
ls: bar: No such file or directory
What am I missing?
I have tried the above example on CentOS, Unbuntu, FreeBSD and MacOSX.