日期:2014-05-16 浏览次数:20597 次
本文链接:http://codingstandards.iteye.com/blog/986891 ? (转载请注明出处)
?
whereis命令用来查找命令的位置,包括执行文件、源代码和手册页文件(locate the binary, source, and manual page files for a command)。如果要查找任意文件的所在位置,可以使用locate或者find等命令。
?
格式:whereis <command>
查找指定命令<command>的位置,包括执行文件、源代码和手册页文件。
?
格式:whereis -b <command>
只查找指定命令<command>的执行文件位置。
?
格式:whereis -m <command>
只查找指定命令<command>的手册页文件所在位置。
?
格式:whereis -s <command>
只查找指定命令<command>的源代码所在位置。
?
[root@jfht ~]# whereis whereis
whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz
[root@jfht ~]# whereis -b whereis
whereis: /usr/bin/whereis
[root@jfht ~]# whereis -m whereis
whereis: /usr/share/man/man1/whereis.1.gz
[root@jfht ~]# whereis -s whereis
whereis:
[root@jfht ~]#
?
[root@jfht ~]# whereis mysql
mysql: /usr/bin/mysql /usr/lib/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz
[root@jfht ~]# whereis -b mysql
mysql: /usr/bin/mysql /usr/lib/mysql /usr/include/mysql /usr/share/mysql
[root@jfht ~]# whereis -m mysql
mysql: /usr/share/man/man1/mysql.1.gz
[root@jfht ~]# whereis -s mysql
mysql:
[root@jfht ~]#
?
【1】程序人生 Linux whereis 命令
http://www.chengxurensheng.com/htm/2011/2/808.htm
【2】方寸心间 一路走,十年不回头 linux whereis 命令详解
http://www.cnblogs.com/wllyy189/archive/2008/04/09/1144131.html
【3】Linux安全在线 linux whereis命令参数及用法详解---linux定位文件位置命令
http://www.linuxso.com/command/whereis.html
【4】酷勤 Linux的五个查找命令:find,locate,whereis,which,type
http://www.kuqin.com/linux/20091009/70532.html
?
?
返回 我使用过的Linux命令系列总目录
?