Differences between revisions 2 and 37 (spanning 35 versions)
Revision 2 as of 2007-05-03 13:11:27
Size: 933
Editor: GreyCat
Comment: fill it in a bit more
Revision 37 as of 2023-01-26 22:54:33
Size: 4194
Editor: emanuele6
Comment: sed before awk
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[Anchor(faq79)]]
== How can I grep for lines containing foo AND bar, foo OR bar? ==
<<Anchor(faq79)>>
== How can I grep for lines containing foo AND bar, foo OR bar? Or for files containing foo AND bar, possibly on separate lines? Or files containing foo but NOT bar? ==
This is really four different questions, so we'll break this answer into parts.
Line 4: Line 5:
The easiest way to match both foo AND bar is to use two {{{grep}}} commands: === foo AND bar on the same line ===
Line 6: Line 7:
{{{ The easiest way to match lines that contain both foo AND bar is to use two {{{grep}}} commands:

{{{#!highlight bash
Line 8: Line 11:
grep foo -- "$myfile" | grep bar # for those who need the hand-holding
Line 10: Line 14:
It can also be done with one {{{egrep}}}, although (as you can probably guess) this doesn't really scale well to more than two patterns: It can also be done with one {{{grep}}}, although (as you can probably guess) this doesn't really scale well to more than two patterns:
Line 12: Line 16:
{{{
egrep 'foo.*bar|bar.*foo'
{{{#!highlight bash
grep -E 'foo.*bar|bar.*foo'
Line 16: Line 20:
If you prefer, you can achieve this in one {{{sed}}} or {{{awk}}} statement. (The {{{awk}}} example is probably the most scalable.) If you prefer, you can achieve this in one {{{sed}}} or {{{awk}}} statement:
Line 18: Line 22:
{{{
sed -n '/foo/{/bar/p}'
{{{#!highlight bash
sed '/foo/!d; /bar/!d'
Line 23: Line 27:
To match lines containing foo OR bar, {{{egrep}}} is the natural choice, but it can also be done with {{{sed}}}, {{{awk}}}, etc. If you need to scale the awk solution to an arbitrary number of patterns, you can write a function like this:
Line 25: Line 29:
{{{
egrep 'foo|bar'
# some people prefer grep -E 'foo|bar'
{{{#!highlight sh
# POSIX
multimatch() { # usage: multimatch pattern...
  awk '
    BEGIN {
      for ( i = 1; i < ARGC; i++ )
        a[i] = ARGV[i]
      ARGC = 1
    }
    {
      for (i in a)
        if ($0 !~ a[i])
          next
      print
    }' "$@"
}
Line 30: Line 47:
{{{egrep}}} is the oldest and most portable form of the {{{grep}}} command using Extended Regular Expressions (EREs). {{{-E}}} is a POSIX-required switch. === foo OR bar on the same line ===

There are lots of ways to match lines containing foo OR bar. `grep` can be given multiple patterns with `-e`:

{{{#!highlight bash
grep -e 'foo' -e 'bar'
}}}

Or you can separate the patterns with newlines:

{{{#!highlight bash
grep 'foo
bar'
}}}

Or you can construct one pattern with {{{grep -E}}}:

{{{#!highlight bash
grep -E 'foo|bar'
}}}

(You can't use the `|` union operator with plain `grep`. `|` is only available in [[RegularExpression|Extended Regular Expressions]].)

It can also be done with {{{sed}}}, {{{awk}}}, etc.

{{{#!highlight bash
sed -n -e '/foo/{ p; d; }' -e '/bar/{ p; d; }'
awk '/foo|bar/'
}}}

The `awk` approach has the advantage of letting you use `awk`'s other features on the matched lines, such as extracting only certain fields.

To match lines that do not contain "foo" AND do not contain "bar":

{{{#!highlight bash
grep -E -v 'foo|bar'
}}}

Or using {{{sed}}}, or {{{awk}}}:
{{{#!highlight bash
sed -e '/foo/d' -e '/bar/d'
awk '!/foo|bar/'
}}}

=== foo AND bar in the same file, not necessarily on the same line ===

If you want to match ''files'' (rather than ''lines'') that contain both "foo" and "bar", there are several possible approaches. The simplest (although not necessarily the most efficient) is to read the file twice:

{{{#!highligh bash
if grep -q foo "$myfile" && grep -q bar "$myfile"; then
  printf 'Found both\n'
fi
}}}
The double {{{grep -q}}} solution has the advantage of stopping each read whenever it finds a match; so if you have a huge file, but the matched words are both near the top, it will only read the first part of the file. Unfortunately, if the matches are near the bottom (worst case: very last line of the file), you may read the whole file two times.

Another approach is to read the file once, keeping track of what you've seen as you go along. In awk:

{{{#!highligh bash
if awk '/foo/{a=1} /bar/{b=1} a&&b{exit} END{if(a&&b){exit 0};exit 1}' "$myfile"; then
  printf 'Found both\n'
fi
}}}
It reads the file one time, stopping when both patterns have been matched. No matter what happens, the END block is then executed, and the exit status is set accordingly.

If you want to do additional checking of the file's contents, this awk solution can be adapted quite easily.

A perl one-liner that scales to any number of patterns, while also reading each input file only once:

{{{#!highligh bash
perl -e '@pat=("foo","bar"); local $/; L: for $f (@ARGV){open(FH,,$f); $a=<FH>; for(@pat){next L unless $a =~ $_} print "$f\n"}'
}}}

=== foo but NOT bar in the same file, possibly on different lines ===

This is a variant of the previous case. The advantage here is that if we find "bar", we can stop reading. Here's an awk solution:

{{{#!highligh bash
awk '/foo/{good=1} /bar/{good=0;exit} END{exit !good}'
}}}

How can I grep for lines containing foo AND bar, foo OR bar? Or for files containing foo AND bar, possibly on separate lines? Or files containing foo but NOT bar?

This is really four different questions, so we'll break this answer into parts.

foo AND bar on the same line

The easiest way to match lines that contain both foo AND bar is to use two grep commands:

   1 grep foo | grep bar
   2 grep foo -- "$myfile" | grep bar   # for those who need the hand-holding

It can also be done with one grep, although (as you can probably guess) this doesn't really scale well to more than two patterns:

   1 grep -E 'foo.*bar|bar.*foo'

If you prefer, you can achieve this in one sed or awk statement:

   1 sed '/foo/!d; /bar/!d'
   2 awk '/foo/ && /bar/'

If you need to scale the awk solution to an arbitrary number of patterns, you can write a function like this:

   1 # POSIX
   2 multimatch() { # usage: multimatch pattern...
   3   awk '
   4     BEGIN {
   5       for ( i = 1; i < ARGC; i++ )
   6         a[i] = ARGV[i]
   7       ARGC = 1
   8     }
   9     {
  10       for (i in a)
  11         if ($0 !~ a[i])
  12           next
  13       print
  14     }' "$@"
  15 }

foo OR bar on the same line

There are lots of ways to match lines containing foo OR bar. grep can be given multiple patterns with -e:

   1 grep -e 'foo' -e 'bar'

Or you can separate the patterns with newlines:

   1 grep 'foo
   2 bar'

Or you can construct one pattern with grep -E:

   1 grep -E 'foo|bar'

(You can't use the | union operator with plain grep. | is only available in Extended Regular Expressions.)

It can also be done with sed, awk, etc.

   1 sed -n -e '/foo/{ p; d; }' -e '/bar/{ p; d; }'
   2 awk '/foo|bar/'

The awk approach has the advantage of letting you use awk's other features on the matched lines, such as extracting only certain fields.

To match lines that do not contain "foo" AND do not contain "bar":

   1 grep -E -v 'foo|bar'

Or using sed, or awk:

   1 sed -e '/foo/d' -e '/bar/d'
   2 awk '!/foo|bar/'

foo AND bar in the same file, not necessarily on the same line

If you want to match files (rather than lines) that contain both "foo" and "bar", there are several possible approaches. The simplest (although not necessarily the most efficient) is to read the file twice:

if grep -q foo "$myfile" && grep -q bar "$myfile"; then
  printf 'Found both\n'
fi

The double grep -q solution has the advantage of stopping each read whenever it finds a match; so if you have a huge file, but the matched words are both near the top, it will only read the first part of the file. Unfortunately, if the matches are near the bottom (worst case: very last line of the file), you may read the whole file two times.

Another approach is to read the file once, keeping track of what you've seen as you go along. In awk:

if awk '/foo/{a=1} /bar/{b=1} a&&b{exit} END{if(a&&b){exit 0};exit 1}' "$myfile"; then
  printf 'Found both\n'
fi

It reads the file one time, stopping when both patterns have been matched. No matter what happens, the END block is then executed, and the exit status is set accordingly.

If you want to do additional checking of the file's contents, this awk solution can be adapted quite easily.

A perl one-liner that scales to any number of patterns, while also reading each input file only once:

perl -e '@pat=("foo","bar"); local $/; L: for $f (@ARGV){open(FH,,$f); $a=<FH>; for(@pat){next L unless $a =~ $_} print "$f\n"}'

foo but NOT bar in the same file, possibly on different lines

This is a variant of the previous case. The advantage here is that if we find "bar", we can stop reading. Here's an awk solution:

awk '/foo/{good=1} /bar/{good=0;exit} END{exit !good}'

BashFAQ/079 (last edited 2023-01-26 22:54:33 by emanuele6)