1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/whereis.md

20 lines
373 B
Markdown
Raw Normal View History

# 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}}`
2021-01-07 11:06:38 -03:00
- 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}}`