Unix - Examples for grep command

Unix - Examples for grep command

 
Below are some examples on the usage of grep and egrep in Unix.
We are using file text.txt as our source file.

Content of text.txt
==================================================================
one
two
three
four
five
six
seven
eight
nine

==================================================================

To print NUM lines of trailing context after matching lines.
==================================================================
[root@server:~] $grep -A<NUM of lines> <pattern> <file>
[root@server:~] $grep -A2 six text.txt
six
seven
eight

==================================================================

To print NUM lines of leading context before matching lines.
==================================================================
[root@server:~] $grep -B<NUM of lines> <pattern> <file>
[root@server:~] $grep -B2 six text.txt
four
five
six

==================================================================

To print all except lines matching pattern.
==================================================================
[root@server:~] $grep -v <pattern> <file>
[root@server:~] $grep -v six text.txt
one
two
three
four
five
seven
eight
nine

==================================================================

Using egrep to print lines matching either pattern.
==================================================================
[root@server:~] $grep -v '<pattern1>|<pattern2>' <file>
[root@server:~] $egrep 'six|seven' text.txt
six
seven

==================================================================
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Convert CSV to JSON with jq
Viewed 26301 times since Mon, Jan 20, 2020
bash for do done AIX
Viewed 1533 times since Mon, Jun 4, 2018
Unix - eval command example
Viewed 1644 times since Fri, Jun 8, 2018
java Simple Java JDBC Program To Execute SQL Update Statement
Viewed 11698 times since Sun, Jan 9, 2022
O’Reilly’s CD bookshelf
Viewed 11286 times since Wed, Jun 27, 2018
Display basic information about Physical Volumes
Viewed 3046 times since Sun, Jun 3, 2018
Convert JSON to CSV with bash script
Viewed 11590 times since Mon, Jan 20, 2020
Unix - Find command examples
Viewed 4162 times since Fri, Jun 8, 2018
Epoch & Unix Timestamp Conversion Tools
Viewed 45369 times since Fri, Jun 22, 2018
Convert CSV to JSON with bash script
Viewed 4708 times since Mon, Jan 20, 2020