Linux Locate Command for Beginners (8 Examples)

Although the find command is undoubtedly one of the most popular and powerful command line utilities for file searching on Linux, it is not fast enough for situations where you need instant results. If you want to search for a file on your system from the command line and speed is your top priority, there is another command you can use: Locate.

In this tutorial, we will explain the locate command with easy-to-understand examples. Please note that all instructions/examples mentioned here have been tested on Ubuntu 22.04 LTS and the locate we use is version 4.8.0.

1. Install the locate command

The locate command does not come preinstalled on Ubuntu and Debian Linux. You can install it using this command:

sudo apt install locate

Install locate command

Locate does its file search based on a precompiled filename database, which makes it much faster than e.g. the find command when doing subsequent searches. But before we can use it, we will have to create and update the file database. Run the following command to create the locate database:

sudo updatedb

Now we are ready to start using locate.

2. How to use locate command in Linux

The locate command is very easy to use. All you have to do is pass the filename you want to search.

locate [filename]

For example, if want to search for all filenames that have the string 'dir2' in them, then I can do that using locate in the following way:

How to use locate command in Linux

Note: The command 'locate dir2' (no asterisks) will also do as locate implicitly replaces the name you pass (say NAME) with *NAME*.

3. How locate command works, or, why is it so fast

The reason locate is so fast is because it doesn't read the file system for the searched file or directory name. It actually refers to a database (prepared by the command updatedb) to find what user is looking for and based on that search, produces its output.

While this is a good approach, it has its share of drawbacks. The main issue is that after every new file or directory is created on the system, you need to update the tool's database for it to work correctly. Otherwise, the command will not be able to find files/directories that are created after the last database update.

For example, if I try finding files with names containing 'tosearch' string in the 'Downloads' directory of my system, the find command produces one result in the output:

Why locate command is so fast

But when I try performing the same search using the locate command, it produces no output.

locate command output

This means that the database locate searches in wasn't updated after the file was created on the system. So, let's update the database, which can be done using the updatedb command. Here's how you do that:

sudo updatedb

And now when I run the same locate command again, it shows files in the output:

locate updatedb command

Similarly, after a file or directory has been removed, you need to make sure that the locate database has been updated, as otherwise, the command will keep showing the file in its output when searched.

4. How to make locate print the number or count of matching entries in the output

As we have seen, the locate command produces the name of the matched files along with their complete or absolute paths in the output. But if you want, you can make the tool suppress all this information, and just print the number or count of matching entries instead. This can be done using the -c command-line option.

make locate print the number or count of matching entries

5. How to force locate to print only those entries that correspond to existing files

As we already discussed earlier in this article, if a file is removed from the system, then until you update the locate database again, the command will keep showing that filename in output. For this specific case, however, you can skip updating the database, and still have correct results in output using the -e command line option.

For example, I removed the 'filetosearch.txt' file from my system. This was confirmed by the find command, which was no longer able to search the file:

use find command instead of locate

But when I performed the same operation using locate, it was still showing the file in the output:

use locate command

And we know why - because locate's database wasn't updated after the file was deleted. However, using the -e option did the trick:

force locate to print only those entries that correspond to existing files

Here's what the locate man page says about this option: "Print only entries that refer to files existing at the time locate is run."

6. How to make locate ignore case distinctions

By default, the search operation the locate command performs is case sensitive. But you can force the tool to ignore case distinctions using the -i command line option.

For example, I have two files on my system, named 'newfiletosearch.txt' and 'NEWFILETOSEARCH.txt'. So, as you can see, the filenames are the same, just that their cases are different. If you ask locate to search for, let's say, "*tosearch*", then it'll only show the lowercase name in its output:

make locate ignore case distinctions

But using the -i command-line option forces the command to ignore the case, and both filenames are produced in the output:

locate caseless search

7. How to separate output entries with ASCII NUL

By default, the output entries that the locate command produces are separated using newline (\n) character. But if you want, you can change the separator, and have the ASCII NUL instead of a newline. This can be done using the -0 command line option.

For example, I've executed the same command we used in the last section above, but added the -0 command-line option:

separate output entries with ASCII NUL

So you can see that the newline separator is no longer there - it has been replaced with NUL.

8. How to view information about the locate database

In case you want to know which database locate is using, as well as other statistics about the database, use the -S command-line option.

view information about the locate database

9. How to search for an exact filename using locate

By default, when you search for a filename using locate, then the name you pass - say NAME - is implicitly replaced by *NAME*. For example, if I search for a filename 'testfile', then all names matching *testfile* are produced in the output:

search for exact filename using locate

But what if the requirement is to search files with names exactly matching 'testfile'? Well, in this case, you'll have to use regular expressions, which can be enabled using the -r command-line option. So, here's how you can search for just 'testfile' using regular expressions:

locate -r /testfile$

search for exact filename using locate - output

If you are new to regular expressions, head here. To switch to a different directory, you can use the cd command of the shell.

Conclusion

Locate offers a lot more options, but the ones we discussed here should be enough to give you a basic idea about the command line utility, as well as to get you started. We would advise you to try all the options described here on your Linux machine, and then switch over to others you can find on the tool's man page.

In case of any doubt or query, please feel free to drop in a comment.

Share this page:

2 Comment(s)