2017-12-01 09:43:09 +00:00
|
|
|
# whereis
|
|
|
|
|
|
|
|
> Locate the binary, source, and manual page files for a command.
|
2021-10-05 04:35:50 +01:00
|
|
|
> More information: <https://manned.org/whereis>.
|
2017-12-01 09:43:09 +00:00
|
|
|
|
|
|
|
- Locate binary, source and man pages for ssh:
|
|
|
|
|
|
|
|
`whereis {{ssh}}`
|
|
|
|
|
|
|
|
- Locate binary and man pages for ls:
|
|
|
|
|
|
|
|
`whereis -bm {{ls}}`
|
|
|
|
|
2021-01-07 14:06:38 +00:00
|
|
|
- Locate source of gcc and man pages for Git:
|
2017-12-01 09:43:09 +00:00
|
|
|
|
|
|
|
`whereis -s {{gcc}} -m {{git}}`
|
|
|
|
|
2021-01-31 17:05:18 +00:00
|
|
|
- Locate binaries for gcc in `/usr/bin/` only:
|
2017-12-01 09:43:09 +00:00
|
|
|
|
|
|
|
`whereis -b -B {{/usr/bin/}} -f {{gcc}}`
|
2019-05-10 20:53:32 +01:00
|
|
|
|
|
|
|
- Locate unusual binaries (those that have more or less than one binary on the system):
|
|
|
|
|
|
|
|
`whereis -u *`
|
|
|
|
|
|
|
|
- Locate binaries that have unusual manual entries (binaries that have more or less than one manual installed):
|
|
|
|
|
|
|
|
`whereis -u -m *`
|