1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

whereis: add missing examples to osx page (#2612)

This commit is contained in:
Rob 2019-01-28 18:33:52 +00:00 committed by Starbeamrainbowlabs
parent b7e8858581
commit d241ddf85c

View file

@ -5,3 +5,15 @@
- 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}}`