1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:42:08 +02:00
tldr/pages/osx/whereis.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

375 B

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