The grep
and ripgrep
commands in Linux systems are powerful text mode search tools that provide multiple options to fine-tune searches and improve efficiency. This guide will detail how to use these two commands to find files containing specific text strings in the contents of a file.
Table of contents
- Basic usage
- Contains specific file types
- Exclude specific file types
- Exclude specific directories
- Show only file names
- Reverse Match
- Statistics of matches
- Example
- Search for text mode in Linux files using
ripgrep
- Basic usage
- Common parameters
- Example
- Basic usage
- FAQ: Use
grep
andripgrep
to search text in a file- How to use
grep
to find all files whose content contains a specific text string?
- How to use
- How to include or exclude certain file types in my
grep
search?
- How to include or exclude certain file types in my
- How to exclude certain directories from my
grep
search?
- How to exclude certain directories from my
- How to display only file names containing a specific string?
- What is
ripgrep
and why should I use it?
- What is
- How to perform basic search using
ripgrep
?
- How to perform basic search using
- What are some commonly used
ripgrep
parameters?
- What are some commonly used
- Can you provide
ripgrep
examples using different options?
- Can you provide
- Summarize
Use grep
to find files containing specific text strings
grep
(Global Regular Expression Print) is a command line utility that searches for patterns in files and prints matching lines. It is a powerful text processing tool that is widely used in Unix-like operating systems, including Linux.
grep
supports regular expressions, allowing it to flexibly perform complex pattern matching. For more details on the usage of grep
commands, see the following guide:
-
grep
command tutorial and example (beginners)
Now let's discuss how to use the grep
command to find files containing specific words or phrases in Linux.
1. Basic usage
To recursively search for a specific text pattern (including symbolic links) and display the line numbers that the pattern matches, use the following command:
<code>grep -Rnw '/path/to/directory/' -e 'pattern'</code>
-
-R
: Perform recursive search, including symbolic links. -
-n
: Show matching line numbers. -
-w
: Match the entire word only. -
-e
: Specify the pattern to search.
Replace /path/to/directory/
with the directory you are searching for and 'pattern'
with the text pattern you are looking for.
2. Include specific file types
To search for files with specific extensions, such as .txt
and .md
files, use the --include
option:
<code>grep --include=\*.{txt,md} -Rnw '/path/to/directory/' -e 'pattern'</code>
3. Exclude specific file types
To exclude files with specific extensions, such as .bak
and .tmp
files, use the --exclude
option:
<code>grep --exclude=\*.{bak,tmp} -Rnw '/path/to/directory/' -e 'pattern'</code>
4. Exclude specific directories
To exclude certain directories from searches, such as node_modules
, .git
, and directories starting with temp_
, use the --exclude-dir
option:
<code>grep --exclude-dir={node_modules,.git,temp_*} -Rnw '/path/to/directory/' -e 'pattern'</code>
5. Only display file names
To display only file names containing patterns (sorted alphabetical), use the -l
option and combine with sort
:
<code>grep -Rlnw '/path/to/directory/' -e 'pattern' | sort</code>
6. Reverse Match
To display rows that do not match the pattern, use the -v
option:
<code>grep -Rnwv '/path/to/directory/' -e 'pattern'</code>
7. Statistics the number of matches
To display the number of matching lines for each file, use the -c
option:
<code>grep -Rnwc '/path/to/directory/' -e 'pattern'</code>
These examples demonstrate other advanced options for fine-tuning text search using grep
on Linux.
Example
Some of the following commands should be run with sudo
or root permissions.
1. Search for the string "password" in all files in the current directory:
<code>grep -Rnw '.' -e 'password'</code>
2. Search for "user" in the /etc
directory insensitively:
<code>grep -Rinw '/etc' -e 'user'</code>
3. Search for the word "main" in the /home/user/projects
directory:
<code>grep -Rnw '/home/user/projects' -e 'main'</code>
4. Search for "TODO" in all .py
files in the current directory:
<code>grep --include=\*.py -Rnw '.' -e 'TODO'</code>
5. Search for "confidential" in the /var/logs
directory, and exclude the .log
file:
<code>grep --exclude=\*.log -Rnw '/var/logs' -e 'confidential'</code>
6. Search for "error" in the /var/log
directory and display only the file name:
<code>grep -Rlnw '/var/log' -e 'error'</code>
7. Search for "fail" in the compressed file (for example backup.zip
):
<code>zgrep -i 'fail' backup.zip</code>
8. Statistics the number of lines containing the word "error" in the /var/log
directory:
<code>grep -Rnwc '/var/log' -e 'error'</code>
These commands and options should cover most text search requirements in a Linux environment.
Search for text mode in Linux files using ripgrep
ripgrep
( rg
) is a modern alternative to grep
, designed to be faster and more user-friendly, especially when searching for large code bases or large files.
It is written in Rust and utilizes efficient technologies such as limited automaton, SIMD and aggressive text optimization, making it much faster than many other search tools.
ripgrep
also provides more intuitive and colorful output by default, and it has a rich set of options to customize search behavior.
Basic usage
To search for the string "function" in the current directory:
<code>rg "search_string" .</code>
Common parameters
-
-i
: Perform case-insensitive search. -
-I
: Ignore binary files. -
-w
: Search only the entire word. -
-n
: Show matching line numbers. -
-C
or--context
: Shows the context around the matching row (for example,-C3
shows 3 lines before and after the match). -
--color=auto
: Highlight matching text. -
-H
: Shows the file name of the found text. -
-c
: Shows the count of matching rows (can be combined with-H
).
Example
1. Search for "error" in the /var/log/
directory insensitively:
<code>rg -i "error" /var/log/</code>
2. Search the entire word "database" in the /home/user/config
directory:
<code>rg -w "database" /home/user/config</code>
3. Display the line number and surrounding context of the "initialize" string in the current directory (before and after 3 lines):
<code>rg -n -C3 "initialize" .</code>
4. Search for the string "deprecated" in all files in the /var/www/html
directory, ignore the binary file and highlight the match:
<code>rg -I --color=auto "deprecated" /var/www/html</code>
5. Display the number of matching lines of the file name and "successful" in the /opt/data
directory:
<code>rg -H -c "successful" /opt/data</code>
6. Search for "user_id", while ignoring the binary file and displaying the file name in the /etc
directory:
<code>rg -I -H "user_id" /etc</code>
7. Search for the string "connection" and display the file name and line number in the /home/user/logs
directory:
<code>rg -H -n "connection" /home/user/logs</code>
These examples demonstrate the versatility and power ripgrep
in a variety of search scenarios, especially in large projects and large files.
FAQ: Use grep
and ripgrep
to search text in a file
1. How to use grep
to find all files whose content contains a specific text string?
To search for specific strings in all files within a directory and its subdirectories, use the following command:
<code>grep -Rnw '/path/to/dir/' -e 'pattern'</code>
-
-R
: Perform recursive search, including symbolic links. -
-n
: Show matching line numbers. -
-w
: Match the entire word only. -
-e
: Specify the pattern to search.
2. How to include or exclude certain file types in my grep
search?
To include a specific file type:
<code>grep --include=\*.{sh,py} -Rnw '/path/to/dir/' -e 'pattern'</code>
To exclude specific file types:
<code>grep --exclude=\*.tmp -Rnw '/path/to/dir/' -e 'pattern'</code>
3. How to exclude certain directories from my grep
search?
To exclude specific directories:
<code>grep --exclude-dir={node_modules,dist,logs} -Rnw '/path/to/dir/' -e 'pattern'</code>
4. How to display only file names containing specific strings?
Use the -l
option to display only the name of the matching file:
<code>grep -Rlnw '/path/to/documents/' -e 'confidential'</code>
5. What is ripgrep
and why should I use it?
ripgrep
( rg
) is a faster and more efficient alternative to grep
, especially in large projects and large files. It is based on Rust's regular expression engine, which uses limited automatons, SIMD and aggressive text optimization to improve search speed.
6. How to perform basic search using ripgrep
?
To search for strings in all files in the current directory, use:
<code>rg "pattern" .</code>
7. What are some commonly used ripgrep
parameters?
-
-i
: Perform case-insensitive search. -
-I
: Ignore binary files. -
-w
: Search only the entire word. -
-n
: Show matching line numbers. -
-C
or--context
: Shows the context around the matching row (for example,-C3
shows 3 lines before and after the match). -
--color=auto
: Highlight matching text. -
-H
: Shows the file name of the found text. -
-c
: Shows the count of matching rows (can be combined with-H
).
8. Can you provide ripgrep
examples using different options?
- Search for "session" in the
/var/logs
directory insensitively:
<code>rg -i "session" /var/logs</code>
- Search the entire word "config" in the
/etc
directory:
<code>rg -w "config" /etc</code>
- Show the line number and surrounding context of the "initialize" string in the
/src
directory (before and after 4 lines):
<code>rg -n -C4 "initialize" /src</code>
- Search for the string "deprecated" in all files in the
/usr/share
directory, ignore the binary and highlight the match:
<code>rg -I --color=auto "deprecated" /usr/share</code>
- Display the number of matching lines of the file name and "success" in the
/opt/logs
directory:
<code>rg -H -c "success" /opt/logs</code>
- Search for "username", while ignoring the binary file and displaying the file name in the
/home/user/settings
directory:
<code>rg -I -H "username" /home/user/settings</code>
- Search for the string "import" and display the file name and line number in the
/projects
directory:
<code>rg -H -n "import" /projects</code>
Summarize
In this tutorial, we discuss how to use grep
and ripgrep
commands to search for files containing specific text strings.
While grep
is a comprehensive and versatile tool, ripgrep
( rg
) provides improved performance and a more modern user experience, making it a popular choice for text search, especially in large projects or when working with large files.
Related readings :
- How to find and delete files with specific text in filenames in Linux
The above is the detailed content of How To Find Files Containing Specific Text Using Grep And Ripgrep In Linux. For more information, please follow other related articles on the PHP Chinese website!

Linuxusesdecentralized,distribution-specificpackagemanagersforpatchmanagement,whileWindowsemploysacentralizedWindowsUpdatesystem.Linux'sapproachoffersflexibilitybutcanbecomplexacrossdistributions,whereasWindowsprovidesastreamlinedbutlessflexibleupdat

Virtual Data Rooms (VDRs) offer secure document storage and sharing, ideal for sensitive business information. This article explores three open-source VDR solutions for on-premises deployment on Linux, eliminating the need for cloud-based services a

Upscayl: Your Free and Open-Source Solution for High-Resolution Images on Linux Linux users who frequently work with images know the frustration of low-resolution pictures. Luckily, Upscayl offers a powerful, free, and open-source solution. This des

The terminal emulator landscape is evolving rapidly, with developers leveraging modern hardware, GPU acceleration, containerization, and even AI/LLMs to enhance console experiences. Enter Ghostty, a new open-source, cross-platform terminal emulator

Innotop: Powerful MySQL monitoring command line tool Innotop is an excellent command line program, similar to the top command, used to monitor local and remote MySQL servers running under the InnoDB engine. It provides a comprehensive set of features and options to help database administrators (DBAs) track various aspects of MySQL performance, troubleshoot issues and optimize server configuration. Innotop allows you to monitor critical MySQL metrics, such as: MySQL replication status User statistics Query list InnoDB buffer pool InnoDB I/O Statistics Open table Locked table etc… The tool regularly refreshes its data to provide server status

Restic: Your Comprehensive Guide to Secure Linux Backups Data loss can cripple a Linux system. Accidental deletions, hardware failures, or system corruption necessitate a robust backup strategy. Restic is a leading solution, providing speed, securi

Top 10 Most Popular Linux Distributions in 2025 Entering 2025, we are excited to share with Linux enthusiasts the most popular distribution this year so far. DistroWatch has always been the most reliable source of information about open source operating systems, with particular attention to Linux distributions and BSD versions. It continuously collects and presents a lot of information about Linux distributions, making them easier to access. While it doesn't measure the popularity or usage of a distribution very well, DistroWatch remains the most accepted measure of popularity within the Linux community. It uses page click ranking (PHR) statistics to measure the popularity of Linux distributions among website visitors. [You can

Linux Window Managers: A Comprehensive Guide to the Best Tiling Options Linux window managers orchestrate how application windows behave, quietly managing the visual arrangement of your open programs. This article explores top-tier tiling window man


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver CS6
Visual web development tools
