whereis, xar, yank: move to common (#6552)

This commit is contained in:
marchersimon
2021-09-19 02:59:20 +02:00
committed by GitHub
parent 0e7393b78f
commit e94e6af882
9 changed files with 0 additions and 54 deletions

27
pages/common/whereis.md Normal file
View File

@@ -0,0 +1,27 @@
# whereis
> Locate the binary, source, and manual page files for a command.
- 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 *`