vote up 6 vote down star
3

I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?

flag

You mean: stdout and stderr? – dirkgently Mar 12 at 9:16

6 Answers

vote up 3 vote down check
yourcommand &>filename

(redirects both stdout and stderr to filename).

link|flag
Somebody should restore to the second edit of this comment. Supplementary info to the question shouldn't be removed, especially in a 6 month old answer. – Autocracy Sep 1 at 14:14
That's strange, I'm trying to roll it back, and it keeps putting the new text in instead. – R. Bemrose Sep 1 at 14:29
There's apparently an issue with rolling things back at the moment. I'm getting the fail cat page (sorry, term swiped from Twitter's fail whale page). – R. Bemrose Sep 1 at 14:31
vote up 1 vote down

Curiously, this works:

yourcommand &> filename

But this gives a syntax error:

yourcommand &>> filename
syntax error near unexpected token `>'

You have to use:

yourcommand 1>> filename 2>&1
link|flag
vote up 0 vote down
LOG_FACILITY="local7.notice"
LOG_TOPIC="my-prog-name"
LOG_TOPIC_OUT="$LOG_TOPIC-out[$$]"
LOG_TOPIC_ERR="$LOG_TOPIC-err[$$]"

exec 3>&1 > >(tee -a /dev/fd/3 | logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_OUT" )
exec 2> >(logger -p "$LOG_FACILITY" -t "$LOG_TOPIC_ERR" )

It is related: Writing stdOut & stderr to syslog.

It almost work, but not from xinted ;(

link|flag
vote up 7 vote down

You can redirect stderr to stdout and the stdout into a file:

some_command 1>file.log 2>&1

See http://tldp.org/LDP/abs/html/io-redirection.html

EDIT: changed the order as pointed out in the comments

link|flag
This redirects stderr to the original stdout, not to the file where stdout is going. Put '2>&1' after '>file.log' and it works. – liw.fi Mar 12 at 9:25
Good point, I seem to have been doing this wrong all these years... no wonder I get all those emails from cron. Thanks! – Guðmundur H Mar 12 at 9:34
I tend to forget that... as you can see. I made the fix and added the post to community wiki – f3lix Mar 12 at 9:49
What is the advantage of this approach over some_command &> file.log? – ubermonkey May 27 at 14:04
vote up 2 vote down
bash your_script.sh 1>file.log 2>&1

1>file.log instructs the shell to send STDOUT to the file file.log, and 2>&1 tells it to redirect STDERR (file descriptor 2) to STDOUT (file descriptor 1).

Note: The order matters as liw.fi pointed out, 2>&1 1>file.log doesn't work.

link|flag
vote up 0 vote down
do_something 2>&1 | tee -a some_file

This is going to redirect everything to file and print it to stdout.

link|flag

Your Answer

Get an OpenID
or

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