In a unix shell, if I want to combine stderr and stdout into the stdout stream for further manipulation, I can append the following on the end of my command:

2>&1

So, if I want to use "head" on the output from g++, I can do something like this:

g++ lots_of_errors 2>&1 | head

so I can see only the first few errors.

I always have trouble remembering this, and I constantly have to go look it up, and it is mainly because I don't fully understand the syntax of this particular trick. Can someone break this up and explain character by character what "2>&1" means?

link|improve this question

4  
This isn't really a "UNIX shell" thing, it's a bash feature/syntax - for example, it doesn't work in tcsh (regardless of platform) – dbr May 3 '09 at 23:16
@dbr thanks, didn't know that. I've edited the question and tags to reflect this. – Tristan Havelick May 3 '09 at 23:42
3  
@dbr I don't think it's just bash - I believe it's a bourne shell thing; hence sh, bash, ksh, ash, dash, etc. – guns May 3 '09 at 23:49
feedback

8 Answers

up vote 147 down vote accepted

1 is stdout. 2 is stderr.

Here is one way to remember this construct (altough it is not entirely accurate): at first, 2>1 may look like a good way to redirect stderr to stdout. However, it will actually be interpreted as "redirect stderr to a file named 1". & indicates that what follows is a file descriptor and not a filename. So the construct becomes: 2>&1.

link|improve this answer
You mean 2>&1, no? – Svante May 3 '09 at 23:42
Indeed. Fixed now. Thanks! – Ayman Hourieh May 3 '09 at 23:45
does this make any sense to you, java... 2&1 >> data.log, I saw one of my colleague did this? – Thang Pham Jul 26 '11 at 19:53
>> means append the output to the data.log file. – Khue Vu Nov 12 '11 at 5:53
feedback
echo test > afile.txt

..redirects stdout to afile.txt. This is the same as doing..

echo test 1> afile.txt

To redirect stderr, you do..

echo test 2> afile.txt

>& is the syntax to redirect a stream to another file descriptor - 0 is stdin. 1 is stdout. 2 is stderr.

You can redirect stdout to stderr by doing..

echo test 1>&2 # or echo test >&2

..or vice versa:

echo test 2>&1

So, in short.. 2> redirects stderr to an (unspecified) file, appending &1 redirects stderr to stdout

link|improve this answer
1  
does this make any sense to you, java ... 2&1 >> data.log, I saw one of my colleague did this? – Thang Pham Jul 26 '11 at 19:53
@Harry that looks like either a shell that isn't bash, or a typo.. cmd 2>&1 >> somefile.log will append stdout/stderr to a file - it's basically the same as above, with >> file to append – dbr Jul 27 '11 at 0:38
I thought it is a typo as well, but I just want to make sure. Thank you – Thang Pham Jul 27 '11 at 13:02
There is a typo. It should read You can redirect stdout to stderr by doing on the third line from the bottom. – kongo09 Sep 21 '11 at 10:12
@kongo09 Well spotted, fixed! – dbr Sep 22 '11 at 0:10
feedback
  • 2 is the default file descriptor for stderr.
  • 1 is the default file descriptor for stdout.
  • >& is shell syntax for "fold a file descriptor into another"
link|improve this answer
Technically correct, but this isn't really any help to someone who doesn't already understand output redirection very well. – David Zaslavsky May 3 '09 at 23:47
The OP does understand output redirection. He just asked for a breakdown of the syntax. – Bill Karwin May 4 '09 at 0:01
8  
The OP is not the only one that will be asking this question and looking for an answer (at least, that's the stated purpose of SO). – Adriano Varoli Piazza May 4 '09 at 12:43
feedback

The numbers refer to the file descriptors (fd). Zero is stdin, one is stdout, and two is stderr. "2>&1" redirects fd 2 to 1. This works for any number of file descriptors if the program uses them.

You can look at /usr/include/unistd.h if you forget them:

/* Standard file descriptors.  */
#define STDIN_FILENO    0   /* Standard input.  */
#define STDOUT_FILENO   1   /* Standard output.  */
#define STDERR_FILENO   2   /* Standard error output.  */

That said I have written C tools that use non-standard file descriptors for custom logging so you don't see it unless you redirect it to a file or something.

link|improve this answer
feedback

That construct sends the standard error stream (stderr) to the current location of standard output (stdout) - this currency issue appears to have been neglected by the other answers.

You can redirect any output handle to another by using this method but it's most often used to channel stdout and stderr streams into a single stream for processing.

Some examples are:

# Look for ERROR string in both stdout and stderr.
foo 2>&1 | grep ERROR

# Run the less pager without stderr screwing up the output.
foo 2>&1 | less

# Send stdout/err to file (with append) and terminal.
foo 2>&1 |tee /dev/tty >>outfile

# Send stderr to normal location and stdout to file.
foo >outfile1 2>&1 >outfile2

Note that that last one will not direct stderr to outfile2 - it redirects it to what stdout was when the argument was encountered (outfile1) and then redirects stdout to outfile2.

This allows some pretty sophisticated trickery.

link|improve this answer
Although that last example would be much clearer as: foo >outfile2 2>outfile1 – Michael Cramer May 4 '09 at 0:15
Clearer, yes, but that wouldn't show the "positional" nature of redirection. The example is contrived since it's not usually useful to do this in a single line - the method becomes really useful when different parties are responsible for the different parts of the redirection. For example, when a script does one bit of redirection and you run it with another bit. – paxdiablo May 4 '09 at 0:19
feedback

To answer your question: It takes any error output (normally sent to stderr) and writes it to standard output (stdout).

This is helpful with, for example 'more' when you need paging for all output. Some programs like printing usage information into stderr.

To help you remember

  • 1 = standard output (where programs print normal output)
  • 2 = standard error (where programs print errors)

"2>&1" simply points everything sent to stderr, to stdout instead.

I also recommend reading this post on error redirecting where this subject is covered in full detail.

link|improve this answer
feedback

I used to forget what order to put the characters in, since I didn't know what they were doing. (And I'm still not 100%!) The way I remember this construct is with the mnemonic "two is greater than one".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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