add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,20 +1,28 @@
# whereis
> 找到命令的二进制,源文件和手册文件。
> 更多信息:<https://manned.org/whereis>.
> 定位命令的二进制文件、源代码和手册文件。
> 更多信息:<https://manned.org/whereis>
- 找到 SSH 命令的二进制、源文件和手册页:
- 定位 SSH 的二进制文件、源代码和手册页:
`whereis {{ssh}}`
- 查找 `ls` 命令的二进制和手册页:
- 定位 ls 的二进制文件和手册页:
`whereis -bm {{ls}}`
- 找到 `gc` 的源文件和 `git` 的手册页:
- 定位 gcc 的源代码和 Git 的手册页:
`whereis -s {{gcc}} -m {{git}}`
- 仅在 /usr/bin/ 目录中查找 `gcc` 的二进制文件:
- 仅在 `/usr/bin/` 中定位 gcc 的二进制文件:
`whereis -b -B {{/usr/bin/}} -f {{gcc}}`
- 定位不寻常的二进制文件(在系统上具有多于或少于一个的二进制文件):
`whereis -u *`
- 定位具有不寻常手册条目的二进制文件(安装的手册少于或多于一个的二进制文件):
`whereis -u -m *`