October 2001
Intermediate to advanced
1040 pages
22h 50m
English
The name grep can be traced back to the ex editor. If you invoked that editor and wanted to search for a string, you would type at the ex prompt:
: /pattern/p
The first line containing the string pattern would be printed as “p” by the print command. If you wanted all the lines that contained pattern to be printed, you would type:
: g/pattern/p
When g precedes pattern, it means “all lines in the file,” or “perform a global substitution.”
Because the search pattern is called a regular expression, we can substitute RE for pattern and the command reads:
: g/RE/p
And there you have it: the meaning of grep and the origin of its name. It means “globally search for the regular expression (RE) and ...