I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?
|
3
|
|||
|
|
|
(redirects both |
||||||
|
|
|
Curiously, this works:
But this gives a syntax error:
You have to use:
|
||
|
|
|
|
It is related: Writing stdOut & stderr to syslog. It almost work, but not from xinted ;( |
||
|
|
|
|
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 |
||||||||
|
|
|
Note: The order matters as liw.fi pointed out, |
|||
|
|
|
|
This is going to redirect everything to file and print it to stdout. |
|||
|
|
