首頁 > 運維 > linux運維 > 主體

Linux指令教程之比較搜尋指令whereis與which的差別

巴扎黑
發布: 2017-09-08 10:46:30
原創
2042 人瀏覽過

這篇文章主要介紹了Linux命令搜尋命令whereis與which的區別的相關資料,這裡舉例說明該如何區別他們之家的用法,需要的朋友可以參考下

##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
登入後複製

以上是Linux指令教程之比較搜尋指令whereis與which的差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!