4 The grep utility searches any given input files, selecting lines
5 that match one or more patterns. By default, a pattern matches an
6 input line if the regular expression in the pattern matches the
7 input line without its trailing newline. An empty expression matches
8 every line. Each input line that matches at least one of the patterns
9 is written to the standard output. grep is used for simple patterns
10 and basic regular expressions; egrep can handle extended regular
11 expressions. fgrep is quicker than both grep and egrep, but can
12 only handle fixed patterns (i.e. it does not interpret regular
13 expressions). Patterns may consist of one or more lines, allowing
14 any of the pattern lines to match a portion of the input. zgrep,
15 zegrep, and zfgrep act like grep, egrep, and fgrep, respectively,
16 but accept input files compressed with the compress or gzip compression