美文网首页
每日一个linux命令16-whereis

每日一个linux命令16-whereis

作者: 1519f8ccc7b0 | 来源:发表于2017-04-20 19:58 被阅读0次

    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
    

    相关文章

      网友评论

          本文标题:每日一个linux命令16-whereis

          本文链接:https://www.haomeiwen.com/subject/lwalzttx.html