This is an old revision of the document!
Table of Contents
grep
grep is a command line text search utility originally written for Unix. The name is taken from a command for the ancient UNIX text editor ed - g/re/p
(global regular expression search and print) which has the same effect. The grep command searches files or standard input globally for lines matching a given regular expression, and prints them to the program's standard output. It is one of the most essential commands you will need to use in Linux command line.
If you are using a modern version of Linux, chances are that grep is already installed on your system. If not, it is probably in your distro's official repositories. Consult your Package Manager for more information.
Useful Commands
Using grep may seem obtuse at first, but once you know how to structure your commands, it is the absolute fastest way to do many common searches:
Search Files in Current Directory
To search the PWD for all files containing INSERTSTRING, format your command as so:
$ grep “INSERTSTRING” *
You can also use the asterisk as a wildcard. So for all files containing INSERT* it would be:
$ grep “INSERT*” *
The -R
flag lets you search child directories. So to search your PWD and all child directories recursively for all files containing INSERTSTRING:
$ grep -R "INSERTSTRING" *
Search Files in Specific Directories
To search a specific directory path for all files containing INSERTSTRING:
$ grep "INSERTSTRING" /path/to/directory/*
-R
works on specific directories as well:
$ grep -R "INSERTSTRING" /path/to/directory/*
Variations
There are countless implementations and derivatives of grep available for many operating systems, as well as for aiding searches in third-party applications such as EnCase (computer forensic software). Early variants of grep included egrep and fgrep. The former applies an extended regular expression syntax that was added to Unix after Ken Thompson's original regular expression implementation. The latter searches for any of a list of 'fixed' strings using the Aho-Corasick algorithm. These variants are embodied in most modern grep implementations as command-line switches (e.g. -E and -F respectively in GNU grep). In such combined implementations, grep may also behave differently depending on the name by which it is invoked, allowing fgrep, egrep, and grep to be links to the same program.
pcregrep is an implementation of grep that uses Perl regular expression syntax.
Other commands contain the word 'grep' to indicate that they search (usually for regular expression matches). The pgrep utility, for instance, displays the processes whose names match a given regular expression.
In Perl, grep is a built-in function that finds elements in a list. In functional programming languages, this higher-order function is typically named “filter” instead.
The DOS, OS/2 and Windows platforms provide the find command for simple string searches. Windows also provides the “findstr” command which approximates much of the functionality of “grep”, or you can use the cygwin grep ported version. A GnuWin32 version of grep is also available.
External Links
Find this page online at: https://bestpoint.institute/tools/grep