0% found this document useful (0 votes)
724 views

12 Example of Grep Command in Unix

These are great collection of grep command in unix a morale booster for beginner and quick head up for intermediate. these grep command tutorials contains some examples of grep command in unix. It teaches how to leverage power of grep command in unix or linux. This presentation contains some of most useful example of grep command in unix See http://javarevisited.blogspot.com/2011/06/10-examples-of-grep-command-in-unix-and.html fore more details. Thanks Javin Paul http://java67.blogspot.com

Uploaded by

Javin Paul
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
724 views

12 Example of Grep Command in Unix

These are great collection of grep command in unix a morale booster for beginner and quick head up for intermediate. these grep command tutorials contains some examples of grep command in unix. It teaches how to leverage power of grep command in unix or linux. This presentation contains some of most useful example of grep command in unix See http://javarevisited.blogspot.com/2011/06/10-examples-of-grep-command-in-unix-and.html fore more details. Thanks Javin Paul http://java67.blogspot.com

Uploaded by

Javin Paul
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 16

How to use Grep command in Unix or Linux

Grep command in Unix


This tutorial is about how to use grep command in unix and here we will see some practical example of using grep in Unix
"grep" one of the most frequently used UNIX command stands for "Global Regular Expression Print". This grep command tutorial is not about theory of UNIX grep but to practical use of grep in UNIX and here I am sharing my experience on use of grep command in Linux with an aim that this would serve as quick guide or tutorial for using grep in UNIX for new beginners and help them to understand the grep command better and its thoughtful usage in UNIX or Linux.

How people use Grep in Unix


Many people use grep just for finding words in a file and missed the real potential of grep by not using all its powerful command line options and its regular expression capability which could not only save a lot of time but also works as a great and powerful tool while analyzing large set of data or log files. Also find command in UNIX can be used in place of grep at many places.

10 examples of grep command in UNIX and Linux


Following examples on grep command in UNIX are based on my experience and I use them on daily basis in my work. These examples are by no means complete so please contribute your grep command tips or how you are using grep in Linux to make it more useful and allow all of us to benefit from each others experience and work efficiently in UNIX or Linux. So here we go .

Finding matching word and excluding unwanted


1) Finding relevant word and exclusion irrelevant word. Most of the time I look for Exception and Errors in log files and some time I know certain Exception I can ignore so I use grep -v option to exclude those Exceptions

grep Exception logfile.txt | grep -v ERROR

Counting number of matching word


2) If you want to count of a particular word in log file you can use grep -c option to count the word. Below command will print how many times word "Error" has appeared in logfile.txt

grep -c "Error" logfile.txt

Displaying Context around matching word


3) Sometime we are not just interested on matching line but also on lines around matching lines particularly useful to see what happens before any Error or Exception. grep --context option allows us to print --context lines around matching pattern. Below example of grep command in UNIX will print 6 lines around matching line of word "successful" in logfile.txt grep --context=6 successful logfile.txt --context=6 Show additional six lines after matching very useful to see what is around and to print whole message if it splits around multiple lines. You can also use command line option "C" instead of "--context" for "--context" example grep -C 2 'hello' * Prints two lines of context around each matching line.

Using EGrep for sophisticated search


4) egrep stands for extended grep and it is more powerful than grep command in Unix and allows more regular exception like you can use "|" option to search for either Error or Exception by executing just one command. grep -i Error logfile

Using Zgrep to search in gzip file


6) zgrep is another great version of grep command in Unix which is used to perform same operation as grep does but with .gz files. Many a times we gzip the old file to reduce size and later wants to look or find something on those file. zgrep is your man for those days. Below command will print all files which have "Error" on them.

zgrep -i Error *.gz

Finding whole word using grep in Unix Linux


7) Use grep -w command in UNIX if you find whole word instead of just pattern. grep -w ERROR logfile Above grep command in UNIX searches only for instances of 'ERROR' that are entire words; it does not match `SysERROR'. For more control, use `\<' and `\>' to match the start and end of `\ `\ words. For example: grep 'ERROR>' * Searches only for words ending in 'ERROR', so it matches the word `SysERROR'.

Display only file names of matching String


8) Another useful grep command line option is "grep -l" which display only the file names which matches the given pattern. Below command will only display file names which have ERROR?

grep -l ERROR *.log grep -l 'main' *.java will list the names of all Java files in the current directory whose contents mention `main'.

Displaying line number of matches using grep in unix


9) If you want to see line number of matching lines you can use option "grep -n" below command will show on which lines Error has appeared. grep -n ERROR log file.

Recursive search using grep in Unix


10) If you want to do recursive search using grep command in Unix there are two options either use "-R" command line option or increase directory one by one as shown below. Grep R HelloWorld * Or Grep HelloWorld */* Grep HelloWorld */*/* Everytime you put an aditional * it will search one level down.

Now I have two bonus examples of grep command in unix:


11) grep command in UNIX can show matching patter in color which is quite useful to highlight the matching section , to see matching pattern in color use below command.

grep Exception today.log --color --color

12) at last there are three version of grep command in UNIX `grep, fgrep, egrep'. `fgrep' stands for Fixed `grep', `egrep' Extended `grep use it based on your need.

Summary
These examples of grep command in UNIX are something which I use on daily basis; I have seen more sophisticated use of grep with regular expression. I will list some more examples of grep command in UNIX as I come across and find useful to share. As per my experience having good hold on grep and UNIX find command with knowledge of regular expression will be great for you day to day life if you need to look log files or config files or need to do production support on electronic trading systems or any other kind of system which is running on UNIX. This list of grep command in UNIX is by no means complete and I look forward from you guys to share how you are using grep command in UNIX.

Author
Name: Javin Paul Website: http://javarevisited.blogspot.com/2011/06/10http://javarevisited.blogspot.com/2011/06/10examples-of-grep-command-in-unixexamples-of-grep-command-in-unix-and.html Javin Paul is an expert in the area of Java, Unix and TIBCO RV and and has been working with these technology from past 7 years while working in various project in finance and trading domain.

You might also like