继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Linux每天学习一个命令之whereis命令

小灰灰heart
关注TA
已关注
手记 14
粉丝 36
获赞 629
whereis -[bmsu] 文档名或目录名的所在路径
-l :可以列出where会去查询的几个主要目录
-b : 只找出二进制格式的文档
-m : 只找出说明文档manual路径下的文档
-s : 只找出source来源档案
-u : 搜寻不在上述三个项目当中的其他特殊文档 

下面来看看几个例子:
Example 1:查看跟ifconfig有关的文档

[root@localhost shell]# whereis ifconfig
ifconfig: /usr/sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz

Example 2:查看ls的帮助文档:

[root@localhost ~]# whereis -m ls
ls: /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz

Example 3:查看whereis会去查询的目录:

[root@localhost ~]# whereis -l
bin: /usr/bin
bin: /usr/sbin
bin: /usr/lib
bin: /usr/lib64
man: /usr/share/man/man0p
man: /usr/share/man/man1
man: /usr/share/man/man1p
man: /usr/share/man/man1x
man: /usr/share/man/man2
man: /usr/share/man/man2x
man: /usr/share/man/man3
man: /usr/share/man/man3p
man: /usr/share/man/man3x
省略部分结果

从上面的例子中可以看出当执行whereis 目录名时列出所有跟目录名有关内容的路径;
而加相关选项的的whereis 命令只列出相应的文件路径,入-m只列出manual目录下的手册文件;
同时可以看出whereis命令多用于程序的命令查找

打开App,阅读手记
44人推荐
发表评论
随时随地看视频慕课网APP

热门评论

不错,很实用。。。。

查看全部评论