2019-03-19 09:09:04 +00:00
|
|
|
# whereis
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
> 找到命令的二进制,源文件和手册文件。
|
2021-10-05 04:35:50 +01:00
|
|
|
> 更多信息:<https://manned.org/whereis>.
|
2019-03-19 09:09:04 +00:00
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 找到 `ssh` 命令的二进制、源文件和手册页:
|
2019-03-19 09:09:04 +00:00
|
|
|
|
|
|
|
`whereis {{ssh}}`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 查找 `ls` 命令的二进制和手册页:
|
2019-03-19 09:09:04 +00:00
|
|
|
|
|
|
|
`whereis -bm {{ls}}`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 找到 `gc` 的源文件和 `git` 的手册页:
|
2019-03-19 09:09:04 +00:00
|
|
|
|
|
|
|
`whereis -s {{gcc}} -m {{git}}`
|
|
|
|
|
2021-08-02 09:41:09 +01:00
|
|
|
- 仅在 /usr/bin/ 目录中查找 `gcc` 的二进制文件:
|
2019-03-19 09:09:04 +00:00
|
|
|
|
|
|
|
`whereis -b -B {{/usr/bin/}} -f {{gcc}}`
|