标签:
whereis命令只能用于程序名的搜索,而且只搜索二进制文件(参数-b)、man说明文件(参数-m)和源代码文件(参数-s)。如果省略参数,则返回所有信息。
(1)用法:
用法: whereis [-bmsu] [BMS 目录名 -f ] 文件名
(2)功能:
功能: 用来定位指令的二进制程序、源代码文件和man手册页等相关文件的路径。
(3)选项参数:
1) -b: 只查找二进制文件
2) -B<目录>: 只在设置的目录下查找二进制文件
3) -f: 不显示文件名前的路径名称
4) -m: 只查找说明文件
5) -M<目录>: 只在设置的目录下查找说明文件
6) -s: 只查找原始代码文件
7) -S<目录>: 只在设置的目录下查找原始代码文件
8) -u: 查找不包含指定类型的文件
(4)实例:
1)[sunjimeng@localhost ~]$ whereis cd 查找与cd命令有关的所有文件,包括二进制,man说明文件,源代码文件。
[sunjimeng@localhost ~]$ whereis cd cd: /usr/bin/cd /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz [sunjimeng@localhost ~]$ whereis pwd pwd: /usr/bin/pwd /usr/include/pwd.h /usr/share/man/man1/pwd.1.gz /usr/share/man/man1p/pwd.1p.gz
2)[sunjimeng@localhost ~]$ whereis -b|-s|-m cd
[sunjimeng@localhost ~]$ whereis -b cd cd: /usr/bin/cd [sunjimeng@localhost ~]$ whereis -s cd cd:[sunjimeng@localhost ~]$ whereis -m cd cd: /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz
3)[sunjimeng@localhost ~]$ whereis -f cd
[sunjimeng@localhost ~]$ whereis -f cd //好像没什么区别啊 cd: /usr/bin/cd /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz [sunjimeng@localhost ~]$ whereis cd cd: /usr/bin/cd /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz
4)[sunjimeng@localhost ~]$ whereis whereis
[sunjimeng@localhost ~]$ whereis whereis whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz [sunjimeng@localhost ~]$ whereis -b whereis whereis: /usr/bin/whereis [sunjimeng@localhost ~]$ whereis -m whereis whereis: /usr/share/man/man1/whereis.1.gz [sunjimeng@localhost ~]$ whereis -s whereis
(5)其他:
说明:
和find相比,whereis查找的速度非常快,这是因为linux系统会将 系统内的所有文件都记录在一个数据库文件中,当使用whereis和下面即将介绍的locate时,会从数据库中查找数据,而不是像find命令那样,通 过遍历硬盘来查找,效率自然会很高。 但是该数据库文件并不是实时更新,默认情况下时一星期更新一次,因此,我们在用whereis和locate 查找文件时,有时会找到已经被删除的数据,或者刚刚建立文件,却无法查找到,原因就是因为数据库文件没有被更新。
标签:
原文地址:http://www.cnblogs.com/MenAngel/p/5492963.html