八亿电脑网
游戏盒子
当前位置: 首页 > 八亿电脑 > 电脑知识 >

linux系统中whereis的用法详解

时间:2015-03-01 21:23来源:网络 作者:win8e 点击:
游戏盒子

linux/Unix可以使用 whereis 这个命令来查找某个特定的程序和命令的二进制文件()、源代码和man手册的位置,貌似现在还能看到软件的配置文件的位置(路径)。


命令作用:

查找二进制文件位置
查找软件的配置文件的位置
查找源代码文件位置
查看man手册位置

语法

基本语法如下:

whereis command
OR
whereis program
OR
whereis [options] program
OR
whereis -BMS directory -f command
whereis 使用举例:
查找 date 命令的 可执行文件、源代码和man手册的位置,输入:
$ whereis date
输出如下图:
whereis-command-demo.gif
Animated gif 01: whereis command running on my Debian based server
如何只搜索二进制文件的位置?
使用 -b 参数 :
$ whereis -b date
如何只搜索man手册的位置?
使用 -m 参数:
$ whereis -m date
如何只搜索源代码文件的位置?
使用 -s 参数:
$ whereis -s date
问题:whereis -u参数是有问题的,按照man whereis 的说明,-u的就是搜索那些没有二进制文件或者源代码文件或者man手册的文件的。但是实际测试发现,和这毛关系都没有啊。
man手册上的一个例子:
A file is said to be unusual if it does not have one entry of eachrequested type. Thus the following example, asks for those files in the current directory which have no documentation(意思是搜索当前目录下,没有man文档的文件):
$ whereis -m -u *
我们先cd /bin ,然后执行上面的命令,会发现 whereis -m -u * 和 where -m * 结果是一模一样的。-u的功能完全没体现出来。而且与man文档描述的完全不符,因为/bin目录下的文件都是有man文档的,按man文档的意思,结果应该是空的,但是结果却不是空的。
如何限制搜索的路径?
使用下面的参数限制对应的搜索路径:
-B /path/to/dir : 限制在指定的目录搜索二进制文件.
-M /path/to/dir : 限制在指定的目录搜索man手册文件.
-S /path/to/dir : 限制在指定的目录搜索二进制文件.
在使用了-B , -M , -S 任意一个参数时,必须加上 -f 参数, 然后指定要搜索的文件名.
实例如下:只在 /bin 目录下搜索 ls 和gcc的:
$ whereis -B /bin -f ls gcc
结果如下:

1
2
ls: /bin/ls /usr/share/man/man1/ls.1.gz
gcc:
可以看到,gcc在/bin目录下搜索二进制文件是没有结果的,说明gcc的二进制文件不在 /bin目录下。
问题:但是,我发现,虽然/bin目录下没有gcc二进制文件,但是使用上面的命令照样有输出,而不是像我翻译的这篇文章那样。

实例2:这也是man手册上的例子,经测试,这里 -u参数还是和man手册上描述的不符合。
查找所有/usr/bin目录下的,其man文档不在 /usr/man/man1/ ,且其源代码文件不在/usr/src/ 的 文件, 输入:
# cd /usr/bin
# whereis -u -ms -M /usr/man/man1 -S /usr/src -f *
测试:
#cd /bin
#whereis -u -m -M /root -f *
按man手册的意思,这行命令的功能是:查找 所有/bin下,其man文档不在/root的文件。所以应该是有结果输出的,因为/root目录下根本没有任何文件的man手册。可以,惊奇的发现,结果居然是空的。
whereis command options
From the whereis(1) command man page:
OptionMeaning
-fDefine search scope.
-bSearch only binarIEs.
-BDefine binarIEs lookup path.
-mSearch only manual paths.
-MDefine man lookup path.
-sSearch only sources path.
-SDefine sources lookup path.
-uSearch from unusual entIEs.
-VOutput version information and exit.无效的,man文档无此参数
-hDisplay this help and exit. 无效的,man文档无此参数
SEE ALSO
whereis(1) Linux/Unix command man page
CategoryList of Unix and Linux commands
File Managementcat
Network UtilitIEsdig • host • ip
Processes Managementbg • chroot • disown • fg • jobs • kill • killall • pwdx • time • pidof •pstree
Searchingwhereis • which
User Informationgroups • id • last • lastcomm • logname • users • w • who • whoami • lid • members
关于whereis 的 -u参数的功能,因为不知道whereis的版本,不好查找对应版本的whereis的源代码,我从网上找了个新版本的whereis的c源代码,明显的发现,whereis使用hard-coded paths。
whereis在git上的代码地址:https://github.com/karelzak/util-linux/blob/master/misc-utils/whereis.c#L96

代码如下:


/*-
* Copyright (c) 1980 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions

本篇文章标签: 教程 Win10 win7 软件 Win8
发表评论