1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages/linux/whereis.md
2017-12-01 15:13:09 +05:30

19 lines
373 B
Markdown

# 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}}`