Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
You mean: stdout and stderr? – dirkgently Mar 12 '09 at 9:16

7 Answers

up vote 87 down vote accepted

Take a look here. Should be:

yourcommand &>filename

(redirects both stdout and stderr to filename).

share|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
1  
This syntax is deprecated according to the Bash Hackers Wiki. Is it? – SalmanPK Jul 11 '12 at 1:10
show 4 more comments
do_something 2>&1 | tee -a some_file

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

share|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
1  
On AIX (ksh) your solution works. The accepted answer do_something &>filename doesn't. +1. – Daniel Jan 4 at 16:01

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

some_command >file.log 2>&1 

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

EDIT: changed the order as pointed out in the comments

share|improve this answer
5  
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
2  
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

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
share|improve this answer
6  
&>> 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
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.

share|improve this answer
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 ;(

share|improve this answer

For tcsh, I have to use the following command :

command >& file

If use command &> file , it will give "Invalid null command" error.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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