You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.5 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# whereis
## 说明
**whereis命令** 用来定位指令的二进制程序、源代码文件和man手册页等相关文件的路径
whereis命令只能用于程序名的搜索而且只搜索二进制文件参数-b、man说明文件参数-m和源代码文件参数-s。如果省略参数则返回所有信息
和find相比whereis查找的速度非常快这是因为linux系统会将 系统内的所有文件都记录在一个数据库文件中当使用whereis和下面即将介绍
的locate时会从数据库中查找数据而不是像find命令那样 过遍历硬盘来查找效率自然会很高。 但是该数据库文件并不是实时更新,默认情况下时
一星期更新一次因此我们在用whereis和locate 查找文件时有时会找到已经被删除的数据或者刚刚建立文件却无法查找到原因就是因为数据库
文件没有被更新
## 选项
```markdown
-b只查找二进制文件
-B<目录>:只在设置的目录下查找二进制文件
-f不显示文件名前的路径名称
-m只查找说明文件
-M<目录>:只在设置的目录下查找说明文件
-s只查找原始代码文件
-S<目录>只在设置的目录下查找原始代码文件
-u查找不包含指定类型的文件
```
## 实例
```bash
whereis svn
whereis -b svn # 只将二进制文件查找出来 
whereis -m svn # 查出说明文档路径
whereis -s svn # 查找source源文件
```