Linux and Unix whereis command

Quick links

About whereis
Syntax
Examples
Related commands
Linux and Unix main page

About whereis

Locate a binary, source, and manual page files for a command.

Syntax

whereis [ -bmsu ] [ -BMS directory... -f ] filename ...

-bSearch only for binaries.
-mSearch only for manual sections.
-sSearch only for sources.
-uSearch 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.
-BChange or otherwise limit the places where whereis searches for binaries.
-MChange or otherwise limit the places where whereis searches for manual sections.
-SChange or otherwise limit the places where whereis searches for sources.
-fTerminate 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

whereis -u -M /usr/man/man1 -S /usr/src -f *

In the above example the whereis command would search for any manual for any file in the current directory.

whereis perl

Locate the directories for where Perl is stored.

Related commands

find
which