Run find -exec command in Bash
This article will explain how to use find
the command to locate any text in a file -exec
using the -p parameter of the command.find
Searching for files in Bash using find
command
find
Command is a useful tool to search and select files in bash. We use find
command with some expressions and actions.
example:
find ./folder -name *.txt
We use the command with a search location find
, such as ./folder
for folder
a directory and its subdirectories. -name *.txt
The expression is to find every file in that location .txt
.
Searching for Files in Bash Using -exec
-r Options and -r Commandsfind
We can use -exec
the -f command action to run commands on files found find
using the -f command.find
example:
find ./folder -name *.txt -exec file {} +
Output:
./folder/hello.txt: ASCII text, with no line terminators
-exec
Run file
the command and display find
the file type returned by the command.
find -exec
Search for specific text in Bash using command
We can use the command with -exec
the -p option find
to find files that contain the text we are searching for.
The main concept is to use find
the command to get each file in the working directory and execute grep
the command to find the text in each file.
example:
# !/bin/bash
find . -exec grep linux {} \;
The following command will return text
the line where the specified is found.
Output:
find . -exec grep linux {} \;
find . -exec grep linux {} +
title = "Unzip .gz file in linux"
description = "How to unzip a .gz file in linux"
To prevent the shell from interpreting ;
the delimiter, we use before it \
. Using this strategy, we only get the lines where text was detected.
;
We can get the line and the file name where it is found by replacing the separator with +
.
# !/bin/bash
find . -exec grep linux {} +
Output:
./bash.sh:find . -exec grep linux {} \;
./bash.sh:find . -exec grep linux {} +
./unzip_gz_linux.txt:title = "Unzip .gz file in linux"
./unzip_gz_linux.txt:description = "How to unzip a .gz file in linux"
find
The way the expression results are processed is determined by the separator. If we use a semicolon ;
, -exec
the command will repeat each result independently.
If we use +
the notation, the results of all expressions will be concatenated and fed to -exec
the command, which is run only once. For performance reasons, we prefer to use +
the delimiter.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Run batch (.bat) files in CMD
Publish Date:2025/03/20 Views:155 Category:OPERATING SYSTEM
-
This article will show you how to use CMD to run a batch file.bat. There are three ways to run a batch file. Let us discuss them in the following sections. Run batch (.bat) files in CMD by directly clicking on them This way you can just go
Changing CMD text color using batch script
Publish Date:2025/03/20 Views:171 Category:OPERATING SYSTEM
-
This article will first discuss the basic concepts of batch scripts or batch files. After introducing the Batch script, let's discuss how to use the Batch script to change the text color of CMD every second. Batch script or file A batch scr
Batch set command timeout
Publish Date:2025/03/20 Views:50 Category:OPERATING SYSTEM
-
This article will first discuss the concept of timeout command in batch scripting. After that, we will discuss setting timeout command for any other command. Timeout command in batch script A timeout is a utility that pauses or delays for a
Batch merge XML files
Publish Date:2025/03/20 Views:101 Category:OPERATING SYSTEM
-
This article will first discuss and understand the XML file format. After that, we will discuss merging two or more XML files into one file using batch commands and scripts. XML File XML, also known as Extensible Markup Language, is a marku
Run .exe file from command prompt using batch script
Publish Date:2025/03/20 Views:76 Category:OPERATING SYSTEM
-
This article will show you how to use a batch (.bat) script to run a .exe type file. You can use two different commands to achieve this. Let’s discuss each method in the following sections. Run .exe file from command prompt using title an
Deleting files older than N days using batch script
Publish Date:2025/03/20 Views:57 Category:OPERATING SYSTEM
-
In this article, we will use a batch script to delete files older than N days. Deleting files older than N days using batch script The general format of the code to perform this task is shown below. FORFILES /p "D:\DIRECTORY" /S /M *.* /D -
Deleting files using batch script
Publish Date:2025/03/20 Views:178 Category:OPERATING SYSTEM
-
This article will demonstrate how to delete files using a batch script. Deleting files using batch script Generally, we can easily delete files by clicking on delete or pressing the delete button on the keyboard. But in Batch, we have to fo
Concatenate multiple files using batch script
Publish Date:2025/03/20 Views:195 Category:OPERATING SYSTEM
-
In this article, we will see how to concatenate multiple files into one file. Concatenate multiple files using batch script The general format of the commands we will use is shown below. type FileONE.txt FileTWO.txt ConcatFile.txt There are
Check if a file exists using batch processing
Publish Date:2025/03/20 Views:100 Category:OPERATING SYSTEM
-
This article will demonstrate how to use a batch script to check if a file exists through sample code. Check if a file exists using batch script The general format or syntax of the code to check if a file exists is provided below. IF EXIST