One of the many utilities for locating files on a Linux file system is the find utility and in this how-to guide, we shall walk through a few examples of using find to help us locate multiple filenames at once.

 

Before we dive into the actual commands, let us look at a brief introduction to the Linux find utility.

 

The simplest and general syntax of the find utility is as follows:

# find directory options [ expression ]

 

Let us proceed to look at some examples of find command in Linux.

 

1. Assuming that you want to find all files in the current directory with .sh and .txt file extensions, you can do this by running the command below:

# find . -type f \( -name "*.sh" -o -name "*.txt" \)

 

Interpretation of the command above:

  • . means the current directory
  • -type option is used to specify file type and here, we are searching for regular files as represented by f
  • -name option is used to specify a search pattern in this case, the file extensions
  • -o means “OR”

It is recommended that you enclose the file extensions in a bracket, and also use the \ ( back slash) escape character as in the command.

 

2. To find three filenames with .sh, .txt and .c extensions, issues the command below:

# find . -type f \( -name "*.sh" -o -name "*.txt" -o -name "*.c" \)

 

3. Here is another example where we search for files with .png, .jpg, .deb and .pdf extensions:

# find /home/vyga/Documents/ -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.deb" -o -name ".pdf" \)

 

When you critically observe all the commands above, the little trick is using the -o option in the find command, it enables you to add more filenames to the search array, and also knowing the filenames or file extensions you are searching for.

Was this answer helpful? 0 Users Found This Useful (0 Votes)