vote up 0 vote down star

I have one program, which writes its output to stderr and it also runs a executable internally which writes to stdout. I want to redirect the output of both to the same file using redirection operator something like "./a.out 2> output.txt", but this redirects the stderr, How to specify stdout also here.

flag

70% accept rate
It's a pretty good question, but it belongs on SuperUser, not StackOverflow. – DVK Sep 29 at 6:43

1 Answer

vote up 2 vote down check

Under Linux:

./a.out > output.txt 2>&1
link|flag
Ya it works fine but if I write 1>&2, then it does not redirect. Can u explain me the meaning of this? – lex Sep 29 at 6:36
2  
1>&2 would direct stdout to stderr - see tldp.org/LDP/abs/html/io-redirection.html for more information – Paul Dixon Sep 29 at 6:42

Your Answer

Get an OpenID
or

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