vote up 3 vote down star

To redirect stdout in bash, overwriting file

cmd > file.txt

To redirect stdout in bash, appending to file

cmd >> file.txt

To redirect both stdout and stderr, overwriting

cmd &> file.txt

How do I redirect both stdout and stderr appending to file? cmd &>> file.txt does not work for me

flag

I would like to note that &>outfile is a Bash (and others) specific code and not portable. The way to go portable (similar to the appending answers) always was and still is >outfile 2>&1 – TheBonsai May 18 at 4:48

2 Answers

vote up 10 vote down check
cmd >>file.txt 2>&1
link|flag
works great! but is there a way to make sense of this or should I treat this like an atomic bash construct? – flybywire May 18 at 8:15
It's simple redirection, redirection statements are evaluated, as always, from left to right. >>file : Red. STDOUT to file (append mode) (short for 1>>file) 2>&1 : Red. STDERR to "where stdout goes" Note that the interpretion "redirect STDERR to STDOUT" is wrong. – TheBonsai May 18 at 8:55
It says "append output (stdout, file descriptor 1) onto file.txt and send stderr (file descriptor 2) to the same place as fd1". – Dennis Williamson May 18 at 9:07
That even works in zsh. Thanks. – Mark Thalman Jul 14 at 21:09
vote up 5 vote down

There are 2 ways, depending on your Bash version.

The classic and portable (Bash pre-4) way is:

cmd >>outfile 2>&1

A nonportable way, starting with Bash 4 is

cmd &>>outfile

(analog to &>outfile)

For good coding style, you should

  • decide if portability is a concern (then use classic way)
  • decide if portability even to Bash pre-4 is a concern (then use classic way)
  • no matter which syntax you use, not change it within the same script (confusion!)

If your Script already starts with #!/bin/sh (no matter if intended or not), then the Bash 4 solution, in general any Bash specific code, is not the way to go.

Also remember that Bash 4 &>> is just shorter writing, it does not introduce any new functionality or similar.

Syntax is (beside other redirection syntax) described here: http://bash-hackers.org/wiki/doku.php/syntax/redirection#appending_redirected_output_and_error_output

link|flag

Your Answer

Get an OpenID
or

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