Home System Tutorial LINUX Linux whereis basic commands

Linux whereis basic commands

May 30, 2024 am 10:18 AM
linux linux tutorial Red Hat linux system linux command linux certification red hat linux linux video

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...
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

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 *
Copy after login
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 of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1246
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

How to run sublime python How to run sublime python Apr 16, 2025 am 08:54 AM

How to run Python scripts in Sublime Text: Install Python interpreter configuration Interpreter path in Sublime Text Press Ctrl B (Windows/Linux) or Cmd B (macOS) to run the script If an interactive console is required, press Ctrl \ (Windows/Linux) or Cmd \ (macOS)

See all articles