whereis
命令只能用於程式名的搜尋,而且只搜尋二進位制檔案(引數-b)、man說明檔案(引數-m)和原始碼檔案(引數-s)。如果省略引數,則返回所有資訊。
和find
相比,whereis
查詢的速度非常快,這是因為linux系統會將 系統內的所有檔案都記錄在一個資料庫檔案中,當使用whereis
和下面即將介紹的locate
時,會從資料庫中查詢資料,而不是像find
命令那樣,通 過遍歷硬碟來查詢,效率自然會很高。
但是該資料庫檔案並不是實時更新,預設情況下時一星期更新一次,因此,在用whereis
和locate
查詢檔案時,有時會找到已經被刪除的資料,或者剛剛建立檔案,卻無法查詢到,原因就是因為資料庫檔案沒有被更新。
whereis [-bmsu] [BMS 目錄名 -f ] 檔案名
whereis
命令是定位可執行檔案、原始碼檔案、幫助檔案在檔案系統中的位置。這些檔案的屬性應屬於原始程式碼,二進位制檔案,或是幫助檔案。whereis
程式還具有搜尋原始碼、指定備用搜尋路徑和搜尋不尋常項的能力。
-b
- 定位可執行檔案。-m
- 定位幫助檔案。-s
- 定位原始碼檔案。-u
- 搜尋預設路徑下除可執行檔案、原始碼檔案、幫助檔案以外的其它檔案。-B
- 指定搜尋可執行檔案的路徑。-M
- 指定搜尋幫助檔案的路徑。-S
- 指定搜尋原始碼檔案的路徑。命令:
whereis python
執行演示及輸出:
[yiibai@localhost ~]$ whereis python
python: /usr/bin/python /usr/bin/python2.7 /usr/lib/python2.7 /usr/lib64/python2.7 /etc/python /usr/include/python2.7 /usr/share/man/man1/python.1.gz
[yiibai@localhost ~]$ whereis git
git:[yiibai@localhost ~]$
說明:
git
沒安裝,找不出來,python安裝了,所以找出了很多相關檔案
命令:
whereis -b python
執行演示及輸出:
[yiibai@localhost ~]$ whereis -b python
python: /usr/bin/python /usr/bin/python2.7 /usr/lib/python2.7 /usr/lib64/python2.7 /etc/python /usr/include/python2.7