Contents:
Different Versions of grep
Searching for Text with grep
Finding Text That Doesn't Match
Finding a Pattern Only When It's a Word
Extended Searching for Text with egrep
Fast grep Isn't
grepping for a List of Patterns
glimpse and agrep
New greps Are Much Faster
Search RCS Files with rcsgrep
A Multiline Context grep Using sed
Make Custom grep Commands (etc.) with perl
More grep-like Programs Written in Perl
Compound Searches
Narrowing a Search Quickly
Faking Case-Insensitive Searches
Finding a Character in a Column
Fast Searches and Spelling Checks with "look"
Finding Words Inside Binary Files
A Highlighting grep
grep is one of UNIX's most useful tools. As a result, everyone seems to want their own, slightly different version that solves a different piece of the problem. (Maybe this is a problem in itself; there really should be only one grep, as the manual page says.) Three versions of grep come with every UNIX system; in addition, there are six or seven freely available versions that we'll mention here, and probably dozens of others that you can find kicking around the Net.
Here are the different versions of grep and what they offer. We'll start with the standard versions:
Plain old grep: great for searching with regular expressions (article 27.2).
Extended grep (or egrep): handles extended regular expressions. It is also, arguably, the fastest of the standard greps (article 27.5).
So-called "fast grep," or fgrep. Actually, this is the slowest of them all. Useful to search for patterns with literal backslashes, asterisks, and so on that you'd otherwise have to escape somehow. Has the interesting ability to search for multiple strings (articles 27.6, 27.7).
Now for the public domain versions:
agrep, or "approximate grep"; a tool that finds lines that "more or less" match your search string. A very interesting and useful tool, it's part of the glimpse package. Glimpse is an indexing and query system for fast searching of huge amounts of text. Both are introduced in article 27.8.
Very fast versions of grep, such as the Free Software Foundation's egrep (article 27.9).
rcsgrep, which searches through RCS files (20.14) (article 27.10).
In addition, you can simulate the action of grep with sed, awk, and perl. These utilities allow you to write such variations as a grep that searches for a pattern that can be split across several lines (27.11) and other context grep programs (27.12, 27.13), which show you a few lines before and after the text you find. (Normal greps just show the lines that match.)
-