Linux命令搜索命令whereis与which的区别
作者:lqh 时间:2023-08-06 03:42:59
Linux命令搜索命令whereis与which的区别
一 whereis
1、语法
whereis 命令名
搜索命令所在的路径以及帮助文档所在的位置
选项:
-b:只查找可执行文件
-m:只查找帮助文件
2、实战
[root@localhost ~]# whereis ls
ls:/usr/bin/ls /usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz
[root@localhost ~]# whoami
root
[root@localhost ~]# whatis
whatis what?
[root@localhost ~]# whatis ls
ls (1)- list directory contents
ls (1p)- list directory contents
[root@localhost ~]# whereis -b ls
ls:/usr/bin/ls
[root@localhost ~]# whereis -m ls
ls:/usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz
二 which
1、语法
which 命令名
搜索命令所在路径及别名
2、实战
[root@localhost ~]# which ls
alias ls='ls --color=auto'
/usr/bin/ls
[root@localhost ~]# which pwd
/usr/bin/pwd
[root@localhost ~]# whereis cd
cd:/usr/bin/cd /usr/share/man/man1/cd.1.gz/usr/share/man/man1p/cd.1p.gz
[root@localhost ~]# which cd
/usr/bin/cd
三 PATH环境变量
定义的是系统搜索命令的路径
[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
来源:http://cakin24.iteye.com/blog/2391228
标签:Linux,搜索命令,whereis,which
0
投稿
猜你喜欢
新站真的被百度封了嘛?原因分析
2009-02-11 01:14:00
Linux内核宏Container_Of的详细解释
2023-11-03 12:10:19
CMS 这点事儿
2008-12-04 13:14:00
网站推广必读 进行内容推广的二十九途径
2009-02-02 16:06:00
关于linux服务器下vsftpd的一些问题
2023-08-25 00:33:32
在Ubuntu Linux上安装和使用Git和GitHub
2021-01-01 22:23:19
centos7 用rpm安装mysql详解
2023-08-18 23:58:01
为什么是注册用户
2007-08-23 08:05:00
如何删除UCenter下某个应用
2009-12-12 19:15:00
Windows服务器安全维护的几个需要注意点
2009-01-06 17:04:00
Windows2000/XP服务攻略
2007-08-22 14:26:00
“无缝式网络整合式营销”将迎来新的发展契机
2009-01-20 16:01:00
Windows2003设置教程——教程错误补充
2009-05-13 13:23:00
Linux中split大文件分割和cat合并文件详解
2021-05-24 15:49:42
DNS 笔记
2008-01-26 18:39:00
[多图]百度Hi安装使用完全图解
2008-03-26 12:22:00
75%年轻人称没有互联网就无法生活
2009-10-16 08:46:00
DEDECMS网站被挂马的解决办法
2010-12-08 16:29:00
linux mpstat命令使用详解
2023-10-19 06:31:07
VMware ESXI服务器虚拟化搭建集群
2022-12-20 00:01:40