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

I have a program that writes information to stdout and stderr, and I need to grep through what's coming to stderr, while disregarding stdout.

I can of course do it in 2 steps:

command > /dev/null 2> temp.file
grep 'something' temp.file

but I would prefer to be able to do is without temp files. Any smart piping trick?

share|improve this question

5 Answers

up vote 118 down vote accepted

Redirect stderr to stdout and then stdout to /dev/null:

command 2>&1 >/dev/null | grep 'something'
share|improve this answer
5  
i just stumbled across /dev/stdout /dev/stderr /dev/stdin the other day, and I was curious if those are good ways of doing the same thing? I always thought 2>&1 was a bit obfuscated. So something like: command 2> /dev/stdout 1> /dev/null | grep 'something' – Mike Lyons Oct 31 '11 at 15:03
6  
You could use /dev/stdout et al, or use /dev/fd/N. They will be marginally less efficient unless the shell treats them as special cases; the pure numeric notation doesn't involve accessing files by name, but using the devices does mean a file name lookup. Whether you could measure that is debatable. I like the succinctness of the numeric notation - but I've been using it for so long (more than a quarter century; ouch!) that I'm not qualified to judge its merits in the modern world. – Jonathan Leffler Oct 31 '11 at 15:35
1  
@Jonathan Leffler: I take a little issue with your plain text explanation 'Redirect stderr to stdout and then stdout to /dev/null' -- Since one has to read redirection chains from right to left (not from left to right), we should also adapt our plain text explanation to this: 'Redirect stdout to /dev/null, and then stderr to where stdout used to be'. – Kurt Pfeifle Jul 1 '12 at 11:46
7  
@KurtPfeifle: au contraire! One must read the redirection chains from left to right since that is the way the shell processes them. The first operation is the 2>&1, which means 'connect stderr to the file descriptor that stdout is currently going to'. The second operation is 'change stdout so it goes to /dev/null', leaving stderr going to the original stdout, the pipe. The shell splits things at the pipe symbol first, so, the pipe redirection occurs before the 2>&1 or >/dev/null redirections, but that's all; the other operations are left-to-right. (Right-to-left wouldn't work.) – Jonathan Leffler Jul 1 '12 at 14:03
1  
The thing that really surprises me about this is that it works on Windows, too (after renaming /dev/null to the Windows equivalent, nul). – Michael Burr Dec 10 '12 at 5:15
show 2 more comments

Or to swap the output from stderr and stdout over use:-

command 3>&1 1>&2 2>&3

This creates a new file descriptor (3) and assigns it to the same place as 1 (stdout), then assigns fd 1 (stdout) to the same place as fd 2 (stderr) and finally assigns fd 2 (stderr) to the same place as fd 3 (stdout). Stderr is now available as stdout and old stdout preserved in stderr. Maybe be overkill but hopefully gives more details on bash file descriptors (there are 9 available to each process).

share|improve this answer
that's awesome ... thanks for sharing! – harald Apr 7 '11 at 9:13
2  
Great with this explanation! Didn't really get it with the apersands before, but this kind of reveals what they mean ... – Samuel Lampa Apr 7 '11 at 12:09
8  
A final tweak would be 3>&- to close the spare descriptor that you created from stdout – Jonathan Leffler Jul 5 '12 at 23:59
this is really the best answer if you to preserve the stdout output – aaron yesterday

You can also redirect to a subshell

command > >(stdlog pipe)  2> >(stderr pipe)

For the case at hand:

command 2> >(grep 'something') >/dev/null
share|improve this answer

For those who want to redirect stdout and stderr permanently to files, grep on stderr, but keep the stdout to write messages to a tty:

# save tty-stdout to fd 3
exec 3>&1
# switch stdout and stderr, grep (-v) stderr for nasty messages and append to files
exec 2> >(grep -v "nasty_msg" >> std.err) >> std.out
# goes to the std.out
echo "my first message" >&1
# goes to the std.err
echo "a error message" >&2
# goes nowhere
echo "this nasty_msg won't appear anywhere" >&2
# goes to the tty
echo "a message on the terminal" >&3
share|improve this answer

Combining the best of these answers, if you do:

command 2> >(grep -v something 1>&2)

...then all stdout is preserved as stdout and all stderr is preserved as stderr, but you won't see any lines in stderr beginning with the string "something".

This has the unique advantage of not reversing or discarding stout and stderr, nor smushing them together, nor using any temporary files.

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.