vote up 3 vote down star
1

I want to pipe the output of grep as the search patter for another grep.

As an example:

grep | xargs grep

I want the output of the first grep as the search term for the second grep. The above command is treating the output of the first grep as the file name for the second grep. I tried using -e option for the second grep but it does not work either

flag

3 Answers

vote up 2 vote down check

If using Bash then you can use backticks:

> grep -e "`grep ... ...`" files

the -e flag and the double quotes are there to ensure that any output from the initial grep that starts with a hyphen isn't then interpreted as an option to the second grep.

Note that the double quoting trick (which also ensures that the output from grep is treated as a single parameter) only works with Bash. It doesn't appear to work with (t)csh.

Note also that backticks are the standard way to get the output from one program into the parameter list of another. Not all programs have a convenient way to read parameters from stdin the way that (f)grep does.

link|flag
this does not work, the output of the inner grep is a list of search terms and it is treating all but the first search term as file names – Sripal Jan 12 at 23:51
ok, changed now for compatibility with multiple search terms, so long as you're using bash. – Alnitak Jan 13 at 0:15
this one works great , thanks – Sripal Jan 13 at 23:22
vote up 4 vote down

Try

grep ... | fgrep -f - file1 file2 ...
link|flag
vote up 0 vote down

You need to use xargs's -i switch:

grep ... | xargs -ifoo grep foo file_in_which_to_search

This takes the option after -i (foo in this case) and replaces every occurrence of it in the command with the output of the first grep.

This is the same as:

grep `grep ...` file_in_which_to_search
link|flag

Your Answer

Get an OpenID
or

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