In this article, we’ll cover the basic usage of the find command in Linux. Usually, it’s syntax is:
find directory [options]
You can search for only files or folders with the following options:
find / -type d #finds directories find / -type f #finds files
You can directly find a file by it’s name
find / -name "myFilename"
You can list all files that are larger than a given value
find / -size +2M #finds files above 2 megabytes find / -size -2M #finds files below 2 megabytes
You can run other commands on files that you find
find / -name "myFile" -exec chmod 0755 {} \; #changes the permissions of any file called myFile to 0755
You can play around and use our SSH Shared Hosting Packages to master the Linux Find Commands. Now with a great discount price – 40% OFF the regular price!