Skip to content
  • About
  • CoursesExpand
    • Problem Solving using C Language
    • Mastering Database Management
    • Linux System Administration
    • Linux and Shell Programming
  • Publications
  • Professional Certificates
  • BooksExpand
    • Books Authored
  • Patents
Download CV
Unix

grep Command

The grep Command

The grep command searches a file or files for lines that have a certain pattern.

Syntax

$grep pattern file(s)

Options

Sr. No.Option & Description
1.-v (Prints all lines that do not match pattern.)
2.-n (Prints the matched line and its line number.)
3.-l (Prints only the names of files with matching lines (letter “l”))
4.-c (Prints only the count of matching lines.)
5-i (Matches either upper or lowercase.)

Example

[nishant@localhost ~]$ ls -l
total 104
-rw-r–r–. 1 root root 44013 Aug 31 13:40 cwp2-latest
drwxr-xr-x. 3 nishant nishant 4096 Oct 14 2019 Desktop
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Documents
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Downloads
-rw-r–r–. 1 root root 14540 Nov 5 2012 epel-release-6-8.noarch.rpm
-rw-rw-r–. 1 nishant nishant 413 Aug 29 2016 file
-rwxrwxr-x. 1 vikas nishant 2033 Aug 29 2016 file1
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Music
-rw-rw-r–. 1 nishant nishant 57 Aug 29 2016 newfile
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Pictures
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Public
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Templates
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Videos

In the above result, it is clear that there are files created in August, January, October but if need to search files from January only, then we can use “grep” command along with the “pipes” command like as below.

[nishant@localhost ~]$ ls -l | grep “Jan”
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Documents
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Downloads
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Music
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Pictures
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Public
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Templates
drwxr-xr-x. 2 nishant nishant 4096 Jan 20 2015 Videos

grep Search from file

[nishant@localhost question]$ grep Musa banana.txt
Banana (Musa species) is an important fruit of tropics.
It may be one of the reasons why the banana is called Apple of Paradise and botanically named Musa paradisiaca.

In the above example the word “Musa” was search from the file “banana.txt” and the word has been found in two lines in the file, so the grep command displays only those two line from the file.

Post navigation

Previous Previous
Shell Case Statement
NextContinue
Unix Comparison Operator
Latest

Advance AI PPT

Read More Advance AI PPTContinue

Latest

Prompts for Image Descriptions

Describe the scene using three vivid sensory details — one for sight, one for sound, and one for touch. Summarize the mood of the image…

Read More Prompts for Image DescriptionsContinue

Latest

Dimensionality Reduction

Dimensionality reduction is the process of reducing the number of features (variables) in a dataset while preserving important information. It helps in: ✅ Reducing computational…

Read More Dimensionality ReductionContinue

Artificial Intelligence

Tanh Function in Neural Network

The tanh function, short for hyperbolic tangent function, is another commonly used activation function in neural networks. It maps any real-valued number into a value…

Read More Tanh Function in Neural NetworkContinue

Latest

Why Initialize Weights in Neural Network

Initializing weights and biases is a crucial step in building a neural network. Proper initialization helps ensure that the network converges to a good solution…

Read More Why Initialize Weights in Neural NetworkContinue

Nishant Munjal

Coding Humanity’s Future </>

Facebook Twitter Linkedin YouTube Github Email

Tools

  • SIP Calculator
  • Write with AI
  • SamplePHP
  • Image Converter

Resources

  • Blog
  • Contact
  • Refund and Returns

Legal

  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

© 2025 - All Rights Reserved

  • About
  • Courses
    • Problem Solving using C Language
    • Mastering Database Management
    • Linux System Administration
    • Linux and Shell Programming
  • Publications
  • Professional Certificates
  • Books
    • Books Authored
  • Patents
Download CV
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok