Should be fairly simple to answer:

Let's say I wanted to execute a command determined by the output of a previous one in Bash:

curl http://website.com 2> /dev/null | grep -i "test" --count | <MY-COMMAND>

What I need: <MY-COMMAND> should only execute if grep had some matches (at least 1).

How can I achieve that?

Also, please feel free to add matching tags, I couldn't come up with any

link|improve this question

Humm.. who voted to close? – slhck Apr 2 '11 at 17:04
somebody thinks this belongs on superuser.com (shrug) – glenn jackman Apr 2 '11 at 18:00
feedback

4 Answers

up vote 3 down vote accepted

Do you need the output of grep to be piped to your command? The answer is simpler if you do not. In that case since grep's return code is success only if it finds a match, you can use && or if:

curl http://website.com 2> /dev/null | grep -q -i "test" && <MY-COMMAND>

if curl http://website.com 2> /dev/null | grep -q -i "test"; then
    <MY-COMMAND>
fi

The && operator is a shorthand way of performing an if-else check. It is a short-circuiting operator, which means that the right hand side will only be executed if the left hand side fails.

If you need to pipe the output to your command then you'll need to save the output to a temporary file, test for a match, and then execute your command:

if curl http://website.com 2> /dev/null | grep -i "test" > /tmp/grep.txt; then
    <MY-COMMAND> < /tmp/grep.txt
fi
link|improve this answer
Let me remark that ifne is an alternative to messing with temporary files. – imz Apr 2 '11 at 17:05
feedback

ifne utility ("run a program if the standard input is not empty") from Jeoy Hess's moreutils package will serve you.

A description of it:

a command that would run the following command if and only if the standard input is not empty. I often want this in crontabs, as in:

find . -name core | ifne mail -s "Core files found" root
link|improve this answer
feedback
curl http://website.com 2> /dev/null | grep -i "test" && <MY-COMMAND>

From the grep man page: "the exit status is 0 if selected lines are found and 1 otherwise"

The command after && is executed only if the previous command returned exit status 0.

link|improve this answer
1  
grep's -q options adds some efficiency – glenn jackman Apr 2 '11 at 18:01
feedback
curl http://www.google.com 2>/dev/null | grep window -i -c && echo "this is a success"
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.