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)

How to use docker desktop How to use docker desktop Apr 15, 2025 am 11:45 AM

How to use Docker Desktop? Docker Desktop is a tool for running Docker containers on local machines. The steps to use include: 1. Install Docker Desktop; 2. Start Docker Desktop; 3. Create Docker image (using Dockerfile); 4. Build Docker image (using docker build); 5. Run Docker container (using docker run).

How to view the docker process How to view the docker process Apr 15, 2025 am 11:48 AM

Docker process viewing method: 1. Docker CLI command: docker ps; 2. Systemd CLI command: systemctl status docker; 3. Docker Compose CLI command: docker-compose ps; 4. Process Explorer (Windows); 5. /proc directory (Linux).

What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

What is vscode What is vscode for? What is vscode What is vscode for? Apr 15, 2025 pm 06:45 PM

VS Code is the full name Visual Studio Code, which is a free and open source cross-platform code editor and development environment developed by Microsoft. It supports a wide range of programming languages ​​and provides syntax highlighting, code automatic completion, code snippets and smart prompts to improve development efficiency. Through a rich extension ecosystem, users can add extensions to specific needs and languages, such as debuggers, code formatting tools, and Git integrations. VS Code also includes an intuitive debugger that helps quickly find and resolve bugs in your code.

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.

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.

See all articles