whichwhereislocate
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了whichwhereislocate相关的知识,希望对你有一定的参考价值。
which命令:
shows the full path of (shell) commands
查看命令的完整路径,根据环境变量的PATH查找
语法:
which [options] [--] programname [...]
实例:
[[email protected] ~]# which passwd /usr/bin/passwd [[email protected] ~]#
whereis命令:
locate the binary, source, and manual page files for a command
查找命令的二进制文件、源码等
语法:
whereis [-bmsu] [-BMS directory... -f] filename...
选项:
-b 只查找二进制文件
-f 只显示文件,不显示目录
-m 只查找文件说明文档
-s 只查找文件源码
实例:
[[email protected] ~]# whereis passwd passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man5/passwd.5.gz /usr/share/man/man1/passwd.1.gz [[email protected] ~]# whereis -m passwd passwd: /usr/share/man/man5/passwd.5.gz /usr/share/man/man1/passwd.1.gz [[email protected] ~]# whereis -s passwd passwd: [[email protected] ~]# whereis -b passwd passwd: /usr/bin/passwd /etc/passwd
以上是关于whichwhereislocate的主要内容,如果未能解决你的问题,请参考以下文章
Linux 命令中 whichwhereislocate 命令的用法。