Recursively search for files in Bash
This article is about the command in Bash find
. This article will discuss the method of using the command in Bash find
to find files of a specific type.
Recursively search for files using find command in Bash
The command line tool for navigating file hierarchies is the command in Linux find
. It can be used to find and monitor folders and files.
It allows searching by name, creation date, modification date, owner, and permissions of files and folders.
It has the following syntax:
$ find [directory where to start searching] [-options] [name of file]
Options can have the following attributes:
Serial number | Options | Target |
---|---|---|
1 | -links N | It searches for some files that don't have the specified link. |
2 | -name | Searches for files with the specified name or pattern. |
3 | -newer [filename] | Searches for files created after the file name. |
4 | -perm | Search for all files with specific permissions. |
5 | Used to find and display the full path name of a file. | |
6 | -empty | It searches for empty files or directories. |
7 | -size +N/-N | Used to search for files of a specified size. If N is used as +N, it means the file size is greater than N; if it is used as -N, it means the file size is less than N. |
8 | -user | It searches for files with the specified owner name. |
Let's look at find
some examples of the command.
Search using file name
$ find ./mydir -name myfile.txt
This command searches the directory mydir for the file name myfile.txt.
Output:
Search using pattern
$ find ./mydir -name "*.jpeg"
This command searches the directory mydir for all files with the extension .jpeg.
Output:
Search for files with permissions
$ find ./mydir -perm 777
This command searches the directory mydir for all files with 777 permissions.
Output:
Find files with multiple names or patterns
In some cases, you need to search for files with multiple patterns, such as when you need to search for files with both .txt and .jpg extensions.
$ find . -name '*.txt' -o -name '*.jpg'
For this case, you can use -name
the option multiple times.
Output:
Search for empty files
$ find mydir -empty
This command searches mydir for empty files or directories.
Output:
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
String comparison in batch files
Publish Date:2025/03/22 Views:167 Category:OPERATING SYSTEM
-
A string is an ordered collection of characters. You can compare strings using conditional commands in batch files, namely, if, if-else, and for commands. Strings may contain spaces and special characters, which can cause errors in the batc
Remove double quotes from variable in batch file
Publish Date:2025/03/22 Views:177 Category:OPERATING SYSTEM
-
In batch files, variables containing multiple words or spaces must be placed in double quotes, but sometimes, we do not want to see these quotes in the output. These quotes can be removed from the variables in batch files. There are many wa
Reading file into variable in batch script
Publish Date:2025/03/22 Views:120 Category:OPERATING SYSTEM
-
Sometimes, we need to put the entire contents of a file into a variable for various purposes, such as finding specific data from a file, replacing a specific part of a file, etc. In Batch, it is very easy to put the entire file contents in
Print a file after skipping first X lines in Bash
Publish Date:2025/03/22 Views:186 Category:OPERATING SYSTEM
-
Suppose you have a file, a large file, and you want to display its contents. How would you do it? You obviously don't want to print out the entire contents of the file, as that's not very practical. You might want to print some selective li
Get the Primary IP Address in Linux
Publish Date:2025/03/22 Views:70 Category:OPERATING SYSTEM
-
There are various ways to get network details in Linux. We will learn some of them in this article. This simple guide is all about using different commands that can be used to get the primary IP address in Linux operating system using Bash
Bash History Size
Publish Date:2025/03/22 Views:189 Category:OPERATING SYSTEM
-
In this article, we will learn about Bash history, its size, and how we can change our history size and handle limits. Before getting into our topic, let us first understand why we need history in Bash shell and how we can get it. Most deve
Find Current Folder Name in Bash
Publish Date:2025/03/22 Views:106 Category:OPERATING SYSTEM
-
Finding a directory is very easy through Bash scripting. But finding the exact directory folder name you are in right now is a bit complicated. This article will introduce three methods to find the folder name from this article directory. I
Changing Directories in Bash
Publish Date:2025/03/22 Views:75 Category:OPERATING SYSTEM
-
In this article, we will learn how to change directories in Bash. The term directory is used to refer to a folder. Because you frequently move between folders when using Bash and when using the Git version control system, it is essential to
Running Regular Expressions in Case Statements in Bash
Publish Date:2025/03/22 Views:75 Category:OPERATING SYSTEM
-
This article explores regular expressions, their basic syntax, and how to run them in Bash using case and if-else constructs. Introduction to Regular Expressions A regular expression, also called regex or regexp, is a sequence of characters