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