這篇文章主要介紹了Linux命令搜尋命令whereis與which的區別的相關資料,這裡舉例說明該如何區別他們之家的用法,需要的朋友可以參考下
##Linux指令搜尋指令whereis與which的差異
一whereis
whereis命令名稱
##-b:只查找可執行檔
##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、語法
[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
以上是Linux指令教程之比較搜尋指令whereis與which的差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!