The Computer Oracle

What does "2>&1" do in command line?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: The World Wide Mind

--

Chapters
00:00 What Does &Quot;2≫&Amp;1&Quot; Do In Command Line?
00:20 Accepted Answer Score 109
00:40 Answer 2 Score 47
04:05 Answer 3 Score 5
04:16 Answer 4 Score 0
05:07 Thank you

--

Full question
https://superuser.com/questions/71428/wh...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#commandline #shell #redirection

#avk47



ACCEPTED ANSWER

Score 109


The 1 denotes standard output (stdout). The 2 denotes standard error (stderr).

So 2>&1 says to send standard error to where ever standard output is being redirected as well. Which since it's being sent to /dev/null is akin to ignoring any output at all.




ANSWER 2

Score 47


tl;dr

Fetch http://www.google.com in the background and discard both the stdout and stderr.

curl http://www.google.com > /dev/null 2>&1 &

is the same as

curl http://www.google.com > /dev/null 2>/dev/null &

Basics

0, 1 and 2 represent the standard file descriptors in POSIX operating systems. A file descriptor is a system reference to (basically) a file or socket.

Creating a new file descriptor in C can look something like this:

fd = open("data.dat", O_RDONLY)

Most Unix system commands take some input and output the result to the terminal. curl will fetch whatever is at the specified url (google dot com) and display the result to stdout.

curl result

Redirection

Like you said < and > are used to redirect the output from a command to somewhere else, like a file.

For example, in ls > myfiles.txt, ls gets the current directory's contents and > redirects its output to myfiles.txt (if the file doesn't exist it is created, otherwise overwritten, but you can use >> instead of > to append to the file instead). If you run the command above, you will notice nothing is displayed to the terminal. That usually means success in Unix systems. To check this cat myfiles.txt to display the file contents to the screen.

> /dev/null 2>&1

The first part > /dev/null redirects the stdout, that is curl's output to /dev/null (more on this ahead) and 2>&1 redirects the stderr to the stdout (which was just redirected to /dev/null so everything will be sent to /dev/null).

The left side of 2>&1 tells you what will be redirected, and the right side tells you where to. The & is used on the right side to distinguish stdout (1) or stderr (2) from files named 1 or 2. So, 2>1 would end up creating a new file (if it doesn't exist already) named 1 and dump the stderr result in there.

/dev/null

/dev/null is an empty file, a mechanism used to discard everything written to it. So, curl http://www.google.com > /dev/null is effectively suppressing curl's output.

> /dev/null

But why is there some stuff still displayed on the terminal?. This is not curl's regular output, but data sent to the stderr, used here for displaying progress and diagnostic information and not just errors.

curl http://www.google.com > /dev/null 2>&1 ignores both curl's output and curls progress information. The result is nothing is displayed on the terminal.

Finally

The & at the end is how you tell the shell to run the command as a job in the background. This causes the prompt to return immediately while the command is run asynchronously behind the scenes. To see the current jobs type jobs in your terminal. Note this is different from the processes running in your system. To see those type top in the terminal.

References




ANSWER 3

Score 5


2 refers to STDERR. 2>&1 will send STDERR to the same location as 1 (STDOUT).




ANSWER 4

Score 0


My understand as follow:

If you only want to read the Output and Error information of the command on the screen, then just write: curl http://www.google.com

And some times you want to save the Output information to a file instead of terminal screen for later review, then you can write: curl http://www.google.com > logfile

But in this way, the StdErr information will be omitted, since > only redirect the StdOut to logfile.

So if you care about the error information of the command once it fail to execute, then you need to combine StdOut with StdErr by using 2>&1 (which means fold StdErr into StdOut), so the following command line can be written: curl http://www.google.com > logfile 2>&1