I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
|||||||||||||
|
This is going to redirect everything to file and print it to stdout. |
|||||||||
|
|
You can redirect stderr to stdout and the stdout into a file:
See http://tldp.org/LDP/abs/html/io-redirection.html EDIT: changed the order as pointed out in the comments |
|||||||||||||||
|
|
Curiously, this works:
But this gives a syntax error:
You have to use:
|
|||||
|
Note: The order matters as liw.fi pointed out, |
||||
|
|
It is related: Writing stdOut & stderr to syslog. It almost work, but not from xinted ;( |
|||
|
|
|
For tcsh, I have to use the following command :
If use |
|||
|
|