locate
Commandlocate
The locate
command is used to quickly find files by their names. It searches through a pre-built database of file paths on the system, making it much faster than searching with find
.
locate [options] [pattern]
Where [pattern]
is the name (or part of the name) of the file you're looking for, and [options]
are additional search criteria.
locate
locate [pattern]
(Basic Search)Searches for files that match the specified pattern:
locate file.txt
This command searches for all files that have file.txt
in their path.
locate -i [pattern]
(Case-Insensitive Search)Searches for files while ignoring case:
locate -i file.txt
This will search for files named file.txt
, File.txt
, or any case variant.
locate -n [number]
(Limit Number of Results)Limits the number of results to the specified number:
locate -n 5 file.txt
This will show only the first 5 matches for file.txt
.
locate -r [regex]
(Search Using Regular Expressions)Searches for files using a regular expression pattern:
locate -r '\.txt$'
This will search for files ending with .txt
.
locate -c [pattern]
(Count Matching Entries)Displays the number of matching entries without listing them:
locate -c file.txt
This will display the number of results for file.txt
but won't list the files themselves.
locate -l
(List Directories in the Database)Displays a list of directories that are searched by locate
:
locate -l
This option shows directories included in the locate
database.
locate -e
(Exclude Non-Existing Files)Only shows files that exist at the time of the search:
locate -e file.txt
In case some files listed in the database have been deleted, this will exclude those from the results.
locate -0 [pattern]
(Null Character Separator)Uses the null character (ASCII 0) to separate entries, useful for processing by other tools:
locate -0 file.txt
This is useful for scripts that need a null character to separate file names.
locate --help
Displays help information for the locate
command:
locate --help
Option | Description |
---|---|
locate [pattern] |
Basic search for files by pattern. |
locate -i [pattern] |
Perform a case-insensitive search. |
locate -n [number] |
Limit the number of results. |
locate -r [regex] |
Search using a regular expression. |
locate -c [pattern] |
Display the count of matching entries. |
locate -e [pattern] |
Only show files that currently exist. |
locate -0 [pattern] |
Use null characters as separators for file names. |
locate -l |
List the directories searched by locate. |
locate --help |
Display the help message. |
For more detailed information, use the manual page for the locate
command:
man locate