-->

grep command in Linux

Author : Piyush Gupta

The grep filter searches a file for a particular pattern of characters, and displays all lines that contain that pattern. The pattern that is searched in the file is referred to as the regular expression (grep stands for globally search for regular expression and print out).

Syntax:


grep [options] pattern [files]
Options Description
-c : This prints only a count of the lines that match a pattern
-h : Display the matched lines, but do not display the filenames.
-i : Ignores, case for matching
-l : Displays list of a filenames only.
-n : Display the matched lines and their line numbers.
-v : This prints out all the lines that do not matches the pattern
-e exp : Specifies expression with this option. Can use multiple times.
-f file : Takes patterns from file, one per line.
-E : Treats pattern as an extended regular expression (ERE)
-w : Match whole word
-o : Print only the matched parts of a matching line,
 with each such part on a separate output line.

Examples:

We assuming file name is piyush.txt

1. Case insensitive search : 

The -i option enables to search for a string case insensitively in the give file. It matches the words like “UNIX”, “Unix”, “unix”.
$grep -i "UNix" piyush.txt

2. Displaying the count of number of matches : 

We can find the number of lines that matches the given string/pattern
$grep -c "unix" piyush.txt

3. Display the file names that matches the pattern : 

We can just display the files that contains the given string/pattern.
$grep -l "unix" *

or
 
$grep -l "unix" f1.txt f2.txt f3.xt f4.txt

4. Checking for the whole words in a file : 

By default, grep matches the given string/pattern even if it found as a sub-string in a file. The -w option to grep makes it match only the whole words.
$ grep -w "unix" piyush.txt

5. Displaying only the matched pattern : 

By default, grep displays the entire line which has the matched string. We can make the grep to display only the matched string by using the -o option.
$ grep -o "unix" piyush.txt

6. Show line number while displaying the output using grep -n : 


To show the line number of file with the line matched.
$ grep -n "unix" piyush.txt

7. Inverting the pattern match : 

You can display the lines that are not matched with the specified search sting pattern using the -v option.
$ grep -v "unix" piyush.txt

8. Matching the lines that start with a string : 

The ^ regular expression pattern specifies the start of a line. This can be used in grep to match the lines which start with the given string or pattern.
$ grep "^unix" piyush.txt

9. Matching the lines that end with a string : 

The $ regular expression pattern specifies the end of a line. This can be used in grep to match the lines which end with the given string or pattern.
$ grep "os$" piyush.txt


No comments:

Post a Comment