tldr/pages.zh/osx/whereis.md

20 lines
402 B
Markdown
Raw Normal View History

2019-03-19 09:09:04 +00:00
# whereis
2019-10-20 03:34:33 +01:00
> 找到命令的二进制,源文件和手册文件.
2019-03-19 09:09:04 +00:00
- 找到 `ssh` 命令的二进制、源文件和手册页:
`whereis {{ssh}}`
- 查找 `ls` 命令的二进制和手册页:
`whereis -bm {{ls}}`
- 找到 `gc` 的源文件和 `git` 的手册页:
`whereis -s {{gcc}} -m {{git}}`
- 仅在 /usr/bin/ 目录中查找 `gcc` 的二进制文件:
`whereis -b -B {{/usr/bin/}} -f {{gcc}}`