This tutorial explains Linux “whereis” command, options and its usage with examples.
DESCRIPTION
whereis locates source/binary and manuals sections for specified files. The supplied names are first stripped of leading pathname components and any (single) trailing extension of the form .ext, for example, .c. Prefixes of s. resulting from use of source code control are also dealt with. whereis then attempts to locate the desired program in a list of standard Linux places.
SYNOPSIS
whereis [ -bmsu ] [ -BMS directory… -f ] filename …
OPTIONS :
-b
Search only for binaries.
-m
Search only for manual sections.
-s
Search only for sources.
-u
Search for unusual entries. A file is said to be unusual if it does not have one entry of each requested type. Thus `whereis -m -u *’ asks for those files in the current directory which have no documentation.
-B
Change or otherwise limit the places where whereis searches for binaries.
-M
Change or otherwise limit the places where whereis searches for manual sections.
-S
Change or otherwise limit the places where whereis searches for sources.
-f
Terminate the last directory list and signals the start of file names, and must be used when any of the -B, -M, or -S options are used.
EXAMPLES
1. When you want to find out where a specific Unix command exists (for example, where does ls command exists?), you can execute the following command
$ whereis ls ls: /bin/ls /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz
2. Find where a command executable is located
When you want to know only where the executable for a specific command is available, use -b option.
$ whereis -b ls ls: /bin/ls
3. Change the search location of whereis command
When you want to search an executable from a path other than the whereis default path, you can use -B option and give path as argument to it.
$ whereis -u -B /tmp -f lsmk lsmk: /tmp/lsmk
4. Locate man pages for a command using -m option
If we want to locate man page of Linux command, use “-m” option.
$ whereis -m whereis whereis: /usr/share/man/man1/whereis.1.gz
5. Find all files in /usr/bin which are not documented in /usr/man/man1 with source in /usr/src:
$ whereis -u -M /usr/man/man1 -S /usr/src -f *
Sanfoundry Global Education & Learning Series – 1000 Linux Tutorials.
- Buy Information Technology Books
- Apply for Linux Internship
- Buy Linux Books
- Practice Programming MCQs
- Apply for Programming Internship