Linux Locate Command for Beginners (8 Examples)

Linux Locate Command for Beginners (8 Examples)

Linux Locate Command for Beginners (8 Examples)

While find is no doubt one of the most popular as well as powerful command-line utilities for file searching in Linux, it not fast enough for situations where-in you need instantaneous results. If you want to search a file on your system through the command line, and speed is the topmost priority, then there’s another command that you can use: Locate.

In this tutorial, we will discuss the locate command using easy to understand examples. Please note that all the instructions/examples mentioned here have been tested on Ubuntu 16.04 LTS, and the locate version we’ve used is 0.26.if(typeof __ez_fad_position != ‘undefined’){__ez_fad_position(‘div-gpt-ad-howtoforge_com-medrectangle-3-0’)};

1. How to use locate command in Linux

The locate command is very easy to use. All you have to do is to pass it 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*.

2. 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 fastif(typeof __ez_fad_position != ‘undefined’){__ez_fad_position(‘div-gpt-ad-howtoforge_com-medrectangle-4-0’)};

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.

3. 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

4. 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.”

5. 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

6. 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.

7. 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

8. 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.

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 first try all the options described here on your Linux machine, and then switch over to others that you can find in the tool’s man page.

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

About the Author

Leave a Reply