mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-13 02:59:16 +00:00
Update cheatsheets
This commit is contained in:
33
whereis
Normal file
33
whereis
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# whereis
|
||||
|
||||
> Locate the binary, source, and manual page files for a command.
|
||||
> More information: <https://manned.org/whereis>.
|
||||
|
||||
- Locate binary, source and man pages for ssh:
|
||||
|
||||
`whereis {{ssh}}`
|
||||
|
||||
- Locate binary and man pages for ls:
|
||||
|
||||
`whereis -bm {{ls}}`
|
||||
|
||||
- Locate source of gcc and man pages for Git:
|
||||
|
||||
`whereis -s {{gcc}} -m {{git}}`
|
||||
|
||||
- Locate binaries for gcc in `/usr/bin/` only:
|
||||
|
||||
`whereis -b -B {{/usr/bin/}} -f {{gcc}}`
|
||||
|
||||
- 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 *`
|
||||
Reference in New Issue
Block a user