Tutorial: Using the 'find' Command
GNU find is a powerful command-line utility that lets you search for files and folders in a hierarchical tree directory structure. It is the backend for all those utilities out there like the graphical searching in KDE or GNOME. However, find can be a little hard to handle at first by beginners. In this tutorial I will try to explain some of the capabilities of find, show some useful one-liners and provide more explanations regarding this command.
|
|
GNU find is a powerful command-line utility that lets you search for files and folders in a hierarchical tree directory structure. It is the backend for all those utilities out there like the graphical searching in KDE or GNOME. However, find can be a little hard to handle at first by beginners. In this tutorial I will try to explain some of the capabilities of find, show some useful one-liners and provide more explanations regarding this command.
In this tutorial I will start from the basic ways of using find and head up into showing more complicated (but very useful) ways of getting the most out of it, in order to search and display exactly the results that you are looking for. The version of find that I currently have installed is 4.4.2, as it comes with Ubuntu 12.04 Precise Pangolin, and Bash 4.2.20 (older versions should work without problem too). Special thanks go to http://www.commandlinefu.com/ for some really great one-liners.
If you’re not familiar with the terminal, command-line or Linux in general I suggest you read my introductory tutorial here: Introduction to Linux Command-Line for Beginners.
The Basics
The simplest way of using find is by typying it in a terminal:
find
This will list all the files and folders (including hidden ones and their sub-files and sub-folders) in the current directory, following the whole hierarchical structure. This will usually generate a long list of files and doesn’t seem to give us much. It’s exactly the same as:
find .
Where . is the currently working directory. This will list all the files and folders in the currently working directory.
It’s probably best to use a new folder somewhere in the file system to see this in effect, a folder which doesn’t have many sub-folders and files.
Moving on, let’s search for all the files that include the name profile in their filename:
find . -name *profile*
* is a wildcard that replaces any number of characters or no character. The above command searches in the current folder for the name *profile*.
find /usr/share -name FreeSans*
This will search inside /usr/share for all the files that start with FreeSans (and end in whatever characters e.g. FreeSans.ttf). I recommend using double quotes around the pattern to search for e.g. find . -name “.bash*”.
Another example:
find /usr/share -name FreeSans* | grep Oblique
So now you know how to search for a certain filename in a specific location.
Uppercase/Lowercase
Sometimes you need to ignore uppercase and lowercase and just search for text by ignoring case-sensitive. We’ll to this just by replacing -name with -iname:
find /usr/share -iname FREESANS*
Date
find . -mtime +3 -iname *somefile*
This will search for files that were created earlier than 3 days ago.
Get only the filename instead of whole path to the file
find will return the whole path to the files that match the search pattern, so in order to get only the filename you can use the fprintf argument command:
find /usr/bin -name "alsa*"
To get only the filename, use:
find /usr/bin -name "alsa*" -printf "%fn"
By size
To search for files by size, use the -size argument, for example:
find /usr -size +500k -name "*png"
This will search inside /usr for files which are equal to or larger than 500 KB and are ending in png. Another example:
find /usr -size +1M -name "*png"
Which will search for files which are bigger than 1 MB in size. Instead of the plus sign, you could use minus in order to search for files that are smaller than a specified size:
find /usr -size -10c -name "*png"
The -10c specifier tells find to only display files which are smaller than 10 bytes. Don’t forget the + or – preceding the desired filesize.
Automatically list details about the found files
You could use a pipe and the xargs command for this:
find /usr/lib -size +2M -name "*.so" | xargs ls -lh
Notice that this will list the files in the current directory if find returns no file.
Searching for files than contain specific text
This is probably one of the most useful ways to search for some file which name you’ve forgot but you know some of the text it contains inside.
find . -name "*bash*" -exec grep -l "aliases" {} +
This will search in all the files that contain the patter bash for the word aliases. Those files that contain this pattern will be printed out.
Some useful one-liners
Find top 20 largest files:
find . -type f -print0 | xargs -0 du -h | sort -hr | head -20
References
Special thanks go to http://www.commandlinefu.com/ and the following articles:
https://www.linux.com/learn/tutorials/316404-10-tips-for-usi...
http://www.ibm.com/developerworks/aix/library/au-unix-find.h...
http://www.linux.ie/newusers/beginners-linux-guide/find.php
http://www.cyberciti.biz/faq/howto-recursively-search-all-fi...
Full Story |
This topic does not have any threads posted yet!
You cannot post until you login.