linux基础命令---whereis

Posted 一生有你llx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux基础命令---whereis相关的知识,希望对你有一定的参考价值。

whereis

      查找命令的位置,包括执行文件、源代码、手册文件。

      此命令的适用范围:RedHat、RHEL、Ubuntu、CentOS、SUSE、openSUSE、Fedora。

 

1、语法

      whereis [选项]  cmd

      whereis [-bmsu] [-BMS directory...  -f] filename...

 

2、选项列表

选项

说明

-b

只搜索二进制文件

-m

只搜索手册文件

-s

只搜索源代码

-u

寻找不寻常的条目。如果文件没有每个请求类型的一个条目,则该文件被认为是不寻常的。因此,“Whereis –m –u *”请求当前目录中没有文档的文件。

-B

在指定目录下搜索二进制文件

-M

在指定目录下搜索手册文件

-S

在指定目录下搜索源代码文件

-f

不显示文件名前的路径,在是使用-S 、–M、-B选项时,必须使用这个选项

 

3、实例

1)查找某个命令的二进制文件

[[email protected] bin]#whereis -b ls

ls: /bin/ls

2)查找命令的手册文件 

[[email protected] bin]# whereis -m ls

ls: /usr/share/man/man1p/ls.1p.gz /usr/share/man/man1/ls.1.gz

3)查找/usr/bin中所有未记录在/usr/man/man 1中且源在/usr/src中的文件:

[[email protected] bin]# cd /usr/bin

[[email protected] bin]# whereis -u -M /usr/man/man1 -S /usr/src -f *

 

以上是关于linux基础命令---whereis的主要内容,如果未能解决你的问题,请参考以下文章

whereis命令详解

Linux文件管理 whereis

linux whereis 快速查找命令

linux系列(十七):whereis命令

linux whereis-查找二进制程序代码等相关文件路径

Linux命令-whereis