12/18/2018

How to Find a File in Linux with the Find Command

source : https://www.maketecheasier.com/find-a-file-in-linux/

The Linux find command is one of the most important and handy commands in Linux systems. It can, as the name suggests, find files on your Linux PC based on pretty much whatever conditions and variables you set. You can find files by permissions, users, groups, file type, date, size and other possible criteria using the find command.
The find command is available on most Linux distro by default, so you do not have to install a package for it.
In this tutorial we will show you how to find files on Linux using various common combinations of search expressions in the command line.
The most obvious way of searching for files is by name. To find a file by name in the current directory, run:
how-to-find-a-file-in-linux-photo
If you want to find a file by name that contains both capital and small letters, run:
find-iname-photo
If you want to find a file in the root directory, prefix your search with sudo which will give you all permissions required to do so, and also the ‘/’ symbol which tells Linux to search in the root directory. Finally, the -print expression displays the directories of your search results. If you were looking for Gzip, you’d type:
how-to-find-a-file-in-linux-gzip
If you want to find files under a specific directory like “/home,” run:
If you want to find files with the “.txt” extension under the “/home” directory, run:
To find files whose name is “test.txt” under multiple directories like “/home” and “/opt,” run:
To find hidden files in the “/home” directory, run:
To find a single file called “test.txt” and remove it, run:
To find all empty files under the “/opt” directory, run:
If you want to find all directories whose name is “testdir” under the “/home” directory, run:
To file all empty directories under “/home,” run:
The find command can be used to find files with a specific permission using the permoption.
To find all files whose permissions are “777” in the “/home” directory, run:
To find all the files without permission “777,” run:
To find all read only files, run:
To find all executable files, run:
To find all the sticky bit set files whose permissions are “553,” run:
To find all SUID set files, run:
To find all files whose permissions are “777” and change their permissions to “700,” run:
To find all the files under “/opt” which are modified twenty days earlier, run:
To find all the files under “/opt” which are accessed twenty days earlier, run:
To find all the files under “/opt” which are modified more than thirty days earlier and less than fiffy days after:
To find all the files under “/opt” which are changed in the last two hours, run:
To find all 10MB files under the “/home” directory, run:
To find all the files under the “/home” directory which are greater than 10MB and less than 50MB, run:
To find all “.mp4” files under the “/home” directory with more than 10MB and delete them using a single command, run:
And there it is – a wholesome list of ways to find whatever files you’re looking for on Linux. It may not be as simple as your rudimentary Windows search, but it’s much more detailed and specific. Are there any commands here that we missed? Let us know in the comments!
Image credit: Control by DepositPhotos