Find all files with extension in Bash
This article explains how to find all files with an extension in Bash.
Find all files with extension in Bash
Finding files with a specific extension in Bash is a simple operation. We can use the find command with the -name option to find files with a specific extension.
grammar:
find DirectoryPath -type f -name '*.txt'
The above command will get the files with extension txt from the given directory. We can put . for the current directory or the directory path; -type f will select only files, not folders, and -name will be used to get a specific extension.
Now let's try an example from a specific directory;
This directory contains subfolders containing some files. Now let's try to run an example.
find /mnt/c/Users/Sheeraz/DemoFolder1 -type f -name '*.txt'
The above command will get all files with extension txt, even those in subfolders. See the output:
/mnt/c/Users/Sheeraz/DemoFolder1/jiyik1.txt
/mnt/c/Users/Sheeraz/DemoFolder1/jiyik2.txt
/mnt/c/Users/Sheeraz/DemoFolder1/jiyik3.txt
/mnt/c/Users/Sheeraz/DemoFolder1/demo.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder/jiyik1.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder/jiyik2.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder/jiyik3.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder/demo.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder1/jiyik1.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder1/jiyik2.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder1/jiyik3.txt
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder1/demo.txt
As we can see, the command found txt files and returned all the text files in the directory. This command can be used with any extension; let's try to use it with another extension.
find /mnt/c/Users/Sheeraz/DemoFolder1 -type f -name '*.rtf'
This command will find files with the RTF extension. See the output:
/mnt/c/Users/Sheeraz/DemoFolder1/jiyik.rtf
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder/jiyik.rtf
/mnt/c/Users/Sheeraz/DemoFolder1/SubFolder1/jiyik.rtf
As we can see, the command successfully returned all the files with the specific extension.
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
Hosting Docker Internal in Linux
Publish Date:2025/03/23 Views:143 Category:OPERATING SYSTEM
-
Docker allows developers to efficiently build, test, and deploy applications by packaging them in standardized units called containers. When working with Docker containers, you may encounter scenarios where you need to connect a container t
Setting the working directory in Docker
Publish Date:2025/03/23 Views:198 Category:OPERATING SYSTEM
-
If present, the working directory of a process in Compute is a directory in a linked hierarchical file system that is dynamic for each process. In Docker, we can set our working directory by editing the Dockerfile and adding the key WORKDIR
How to get IP address in CentOS
Publish Date:2025/03/23 Views:108 Category:OPERATING SYSTEM
-
This short article is a brief introduction to CentOS followed by a brief discussion on how we can get the server IP address in CentOS using the Command Line Interface (CLI). This article will discuss some of the commands and their usage for
Updating YUM in Linux
Publish Date:2025/03/23 Views:148 Category:OPERATING SYSTEM
-
This article will teach us how to update YUM in Linux and how to install, update, remove, find and manage packages on a Linux system. We have also seen the difference yum update between and in Linux yum upgrade . yum update command in Linux
Installing Deb Files in Linux
Publish Date:2025/03/23 Views:93 Category:OPERATING SYSTEM
-
In this Linux article, we will learn how to install .deb (Debian Package) files on Linux systems. We will also see how to remove .deb files after installation. More importantly, we will learn different ways to install .deb files on Linux sy
lsof Command in Linux
Publish Date:2025/03/23 Views:100 Category:OPERATING SYSTEM
-
In this Linux article, we will learn about lsof command in Linux operating system. We will see how to use this command for different purposes in Linux. We use lsof the lsof command to verify the ports in use on the Linux operating system. U
How to solve the problem of not being able to execute binary files in Linux
Publish Date:2025/03/23 Views:108 Category:OPERATING SYSTEM
-
In this article, we will learn how to execute binary files in Linux. We will also learn how to troubleshoot the error if Linux fails to execute the binary file. Usually, this error occurs when we run shell scripts in Linux. This article wil
Error in Linux Mesg: Ttyname Failed: Inappropriate Ioctl for Device Error
Publish Date:2025/03/23 Views:178 Category:OPERATING SYSTEM
-
In this article, we will learn how to fix the error mesg: ttyname failed: Inappropriate ioctl for device in Linux . We will discuss some of the causes of this error and show you how to fix it. Let's start with what causes this error in Linu
ps aux command in Linux
Publish Date:2025/03/23 Views:57 Category:OPERATING SYSTEM
-
If you are using Linux and are looking for a tool that can monitor all the processes running on your system, then you should use the command ps aux. This command will show you an overview of all running processes. It is very useful for trou