Linux whereis basic commands
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.
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.
Suppose you want to find, for example, your location with the whereis command. Here are your specific operations:
whereis 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.
If you want to search only, say, binary files, you can use the -b command line option. For example:
whereis -b cp
Similarly, the two options -m and -s correspond to the help page and source code respectively.
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.
There is also an option corresponding to this. Just add -l after whereis.
whereis -l
This is part of the output of the example:
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 *
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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

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)

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.

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.

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.

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.

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.
