mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 08:35:32 +02:00
whereis: add page (#1708)
This commit is contained in:
parent
64df2ef980
commit
9bd2d13479
1 changed files with 19 additions and 0 deletions
19
pages/linux/whereis.md
Normal file
19
pages/linux/whereis.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue