Use the Linux grep Command (2024)

This article explains how to start using the grep command in Linux®.

You use the grep command within a Linux or Unix-based system to perform text searches for a defined criteria of words or strings. grep stands for Globally search for a Regular Expression and Print it out.

grep syntax

The following example shows the basic command structure:

grep 'string' filename(s)

This command searches for and returns any lines of text that contain the given criteria string in filename(s).

Options:

You can add any of the following options individually or in combination to refine your search:

  • -i: Prints lines with matching criteria while ignores casing (Upper/Lowecase).
  • -l: Prints filenames only.
  • -n: Prints lines with matching criteria and line numbers.
  • -c: Prints count of lines with matching criteria.
  • -v: Prints lines not matching criteria (inverse search).
  • -w: Prints whole word matches.
  • -A n: Prints n lines after matches.
  • -B n: Prints n lines before matches.
  • -C n: Prints n lines before and after matches.

Sample grep commands with output

Example: file "example.txt" contains the following 5 lines:

hello worldHello WorldHello WorldsHello Moon321 Goodnight

Basic command: Find and print an exact match for "world"

[root@test ~]# grep world example.txthello world

Use "-i" to ignore case

[root@test ~]# grep -i world example.txthello worldHello WorldHello Worlds

Use "-n" to find and print matches and include line numbers.

[root@test ~]# grep -n Hello example.txt2:Hello World3:Hello Worlds4:Hello Moon

Use "-c" to find and print the number of line matches.

[root@test ~]# grep -c hello example.txt1

Use a combination of "-c" and "-i" to refine the search.

[root@test ~]# grep -ci hello example.txt4

Use "-v" to find and print all inverse (non-matching) lines.

[root@test ~]# grep -v world example.txtHello WorldHello WorldsHello Moon321 Goodnight

Use a combination of "-v" and "-i" to refine the search.

[root@test ~]# grep -vi world example.txtHello Moon321 Goodnight

Use "-w" to find and print whole word matches.

[root@test ~]# grep -w World example.txtHello World

Use "-A n" to find and print the matches along with "n" lines after the match.

[root@test ~]# grep -A 2 Worlds example.txtHello WorldsHello Moon321 Goodnight

Use "-B n" to find and print the matches along with "n" lines before the match.

[root@test ~]# grep -B 2 Goodnight example.txtHello WorldsHello Moon321 Goodnight

Use "CA n" to find and print the match along with "n" lines before and after the match.

[root@test ~]# grep -C 2 Worlds example.txthello worldHello WorldHello WorldsHello Moon321 Goodnight

Updated 9 months ago

Use the Linux grep Command (2024)
Top Articles
Unleashing blockchain’s potential in Pakistan’s legal sphere | The Express Tribune
3 Months of PRP for Hair Loss: Photos, Results & Side Effects
Katie Pavlich Bikini Photos
Gamevault Agent
Hocus Pocus Showtimes Near Harkins Theatres Yuma Palms 14
Free Atm For Emerald Card Near Me
Craigslist Mexico Cancun
Hendersonville (Tennessee) – Travel guide at Wikivoyage
Doby's Funeral Home Obituaries
Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
Select Truck Greensboro
How To Cut Eelgrass Grounded
Pac Man Deviantart
Craigslist In Flagstaff
Shasta County Most Wanted 2022
Energy Healing Conference Utah
Testberichte zu E-Bikes & Fahrrädern von PROPHETE.
Aaa Saugus Ma Appointment
Geometry Review Quiz 5 Answer Key
Walgreens Alma School And Dynamite
Bible Gateway passage: Revelation 3 - New Living Translation
Yisd Home Access Center
Home
Shadbase Get Out Of Jail
Gina Wilson Angle Addition Postulate
Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
Walmart Pharmacy Near Me Open
Dmv In Anoka
A Christmas Horse - Alison Senxation
Ou Football Brainiacs
Access a Shared Resource | Computing for Arts + Sciences
Pixel Combat Unblocked
Umn Biology
Cvs Sport Physicals
Mercedes W204 Belt Diagram
Rogold Extension
'Conan Exiles' 3.0 Guide: How To Unlock Spells And Sorcery
Teenbeautyfitness
Weekly Math Review Q4 3
Facebook Marketplace Marrero La
Nobodyhome.tv Reddit
Topos De Bolos Engraçados
Gregory (Five Nights at Freddy's)
Grand Valley State University Library Hours
Holzer Athena Portal
Hampton In And Suites Near Me
Stoughton Commuter Rail Schedule
Bedbathandbeyond Flemington Nj
Free Carnival-themed Google Slides & PowerPoint templates
Otter Bustr
San Pedro Sula To Miami Google Flights
Selly Medaline
Latest Posts
Article information

Author: Gov. Deandrea McKenzie

Last Updated:

Views: 6010

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Gov. Deandrea McKenzie

Birthday: 2001-01-17

Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

Phone: +813077629322

Job: Real-Estate Executive

Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.