本文摘自PHP中文网,作者巴扎黑,侵删。
这篇文章主要介绍了Linux命令搜索命令whereis与which的区别的相关资料,这里举例说明该如何区别他们之家的用法,需要的朋友可以参考下Linux命令搜索命令whereis与which的区别
一 whereis
1、语法
whereis 命令名
搜索命令所在的路径以及帮助文档所在的位置
选项:
-b:只查找可执行文件
-m:只查找帮助文件
2、实战
1 2 3 4 5 6 7 8 9 10 11 12 13 | [root@localhost ~]
ls:/usr/bin/ls /usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz
[root@localhost ~]
root
[root@localhost ~]
whatis what?
[root@localhost ~]
ls (1)- list directory contents
ls (1p)- list directory contents
[root@localhost ~]
ls:/usr/bin/ls
[root@localhost ~]
ls:/usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz
|
二 which
1、语法
which 命令名
搜索命令所在路径及别名
2、实战
1 2 3 4 5 6 7 8 9 | [root@localhost ~]
alias ls='ls --color=auto'
/usr/bin/ls
[root@localhost ~]
/usr/bin/pwd
[root@localhost ~]
cd:/usr/bin/cd /usr/share/man/man1/cd.1.gz/usr/share/man/man1p/cd.1p.gz
[root@localhost ~]
/usr/bin/cd
|
三 PATH环境变量
定义的是系统搜索命令的路径
1 2 | [root@localhost ~]
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
|
以上就是Linux命令教程之比较搜索命令whereis与which的区别的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
Linux中关于别名与二进制的使用教程
Linux系统日志在哪?
ssh Linux是什么
如何利用系统日志和实时获取实例屏幕截图分析排查实例故障
停止一台或多台ecs实例中一条正在进行中的云助手命令进程
在Linux系统下查看网卡信息的命令是什么
Linux etc是什么
Linux解决su root切换提示没有文件或目录的图文详解
深度Linux系统怎么样
Linux系统怎么进入终端?
更多相关阅读请进入《Linux》频道 >>
转载请注明出处:木庄网络博客 » Linux命令教程之比较搜索命令whereis与which的区别