up vote 30 down vote favorite
11
share [g+] share [fb]

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

link|improve this question

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

6 Answers

up vote 26 down vote accepted

Take a look here. Should be:

yourcommand &>filename

(redirects both stdout and stderr to filename).

link|improve this answer
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. – Jeff Ferland Sep 1 '09 at 14:14
That's strange, I'm trying to roll it back, and it keeps putting the new text in instead. – Powerlord Sep 1 '09 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). – Powerlord Sep 1 '09 at 14:31
still not rolled back – corydoras May 6 '10 at 23:50
feedback
do_something 2>&1 | tee -a some_file

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

link|improve this answer
1  
I was searching SO for how to do this with pipe and tee. You da man! – Ogre Psalm33 Aug 4 '10 at 12:54
feedback

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|improve this answer
1  
This redirects stderr to the original stdout, not to the file where stdout is going. Put '2>&1' after '>file.log' and it works. – Lars Wirzenius Mar 12 '09 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 '09 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 '09 at 9:49
What is the advantage of this approach over some_command &> file.log? – ubermonkey May 27 '09 at 14:04
1  
If you want to append to a file then you must do it this way: echo "foo" 2>&1 1>> bar.txt AFAIK there's no way to append using &> – SlappyTheFish Jun 8 '10 at 10:58
show 1 more comment
feedback
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|improve this answer
feedback
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|improve this answer
feedback

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|improve this answer
&>> seems to work on BASH 4: $ echo $BASH_VERSION 4.1.5(1)-release $ (echo to stdout; echo to stderr > /dev/stderr) &>> /dev/null – user272735 May 26 '11 at 4:39
feedback

Your Answer

 
or
required, but never shown

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