1. 命令解析
命令用途:
只能用于程序名的搜索,whereis是从操作系统的数据库中直接查询的,所以速度很快,但由于操作系统的数据库更新频率较低(一个星期更新一次),所以查询结果会有一定的误差。
命令格式:
whereis [options] file
命令参数:
-b search only for binaries
-B <dirs> define binaries lookup path
-m search only for manuals
-M <dirs> define man lookup path
-s search only for sources
-S <dirs> define sources lookup path
-f terminate <dirs> argument list
-u search for unusual entries
-l output effective lookup paths
2. 示例
2.1 查询gcc
[root@test ~]# whereis -b gcc
gcc: /usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc
[root@test ~]# whereis gcc
gcc: /usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc /usr/share/man/man1/gcc.1.gz
[root@test ~]# whereis -m gcc
gcc: /usr/share/man/man1/gcc.1.gz