Home  >  Article  >  System Tutorial  >  Linux whereis basic commands

Linux whereis basic commands

WBOY
WBOYOriginal
2024-05-30 10:18:47464browse

Linux whereis 基础命令

In this article, we will explain the basics of this command through some easy-to-understand examples. But before that, it’s worth pointing out that all examples presented below were tested under Ubuntu 16.04 LTS.

Linux whereis command

whereis command can help users find the binary file, source code and help page of a certain command. The following is its format:

whereis [options] [-BMS directory... -f] name...

This is the explanation given by the man page of this command:

whereis can find binary files, source files and help files for the specified command. The found files are displayed with the main pathname removed, and then with the file's (single) trailing extension (e.g.: .c) removed. The s. prefix originating from source control is also removed. Next, whereis will try to find the specific program in standard Linux locations, as well as in the paths specified by $PATH and $MANPATH.

The following examples in the form of Q&A can give you an intuitive feeling on how to use the whereis command.

Q1. How to use the whereis command to find the location of the binary file?

Suppose you want to find, for example, your location with the whereis command. Here are your specific operations:

whereis whereis

Linux whereis 基础命令

It should be noted that the first path output is the result you want. Using the whereis command will also display the help page and source code path. (It will be displayed if it can be found, but it is not found in this example) So the second path you see in the output is the location of the help page file.

Q2. How to specify when searching only binary files, help pages, or source code?

If you want to search only, say, binary files, you can use the -b command line option. For example:

whereis -b cp

Linux whereis 基础命令

Similarly, the two options -m and -s correspond to the help page and source code respectively.

Q3. How to limit the search location of whereis command?

By default, whereis looks for files from hard-coded paths defined by matchers. But if you want, you can limit the search with command line options. For example, if you only want to find binaries in /usr/bin, you can use the -B option to do so.

whereis -B /usr/bin/ -f cp

Note: Multiple paths can be given when using this method. Use the -f option to explicitly separate the directory listing and file names to search.

Similarly, if you want to search only help files or source code, you can use the -M and -S options accordingly.

Q4. How to check the search path of whereis?

There is also an option corresponding to this. Just add -l after whereis.

whereis -l

This is part of the output of the example:
Linux whereis 基础命令

Q5. How to find a command with abnormal entries?

For the whereis command, if a command has more than one item for each explicit request type, the command is considered an exception. For example, commands for which no documentation is available, or for which documentation is scattered throughout, can be counted as unusual commands. When using the -u option, whereis will display commands with exception entries.

For example, the following example shows that there is no corresponding document or a command with multiple documents in the current directory.

whereis -m -u *
Summarize

I think whereis is not the kind of command line tool you need to use frequently. But it will definitely make your life easier when you encounter certain special situations. We've already touched on some of the important command line options this tool offers, so keep an eye on the exercise. For more information, go directly to its man page.


The above is the detailed content of Linux whereis basic commands. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn