天天看點

Atitit.軟體guibuttonand面闆---os區-----linux windows搜尋檔案 目錄 1. Find 2. 尋找檔案夾 3. 2. Locate// everything 4. 3. Whereis (windows馬這個映射的方法) 5. 4. Which// everything+path 6. 5. Type/// everything

Atitit.軟體guibuttonand面闆---os區-----搜尋檔案

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc674">1. Find 1</a>

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc15100">2. 尋找檔案夾 1</a>

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc5504">3. 2. Locate// everything 1</a>

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc25902">4. 3. Whereis (windows馬這個映射的方法) 2</a>

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc23202">5. 4. Which// everything+path 2</a>

<a target="_blank" href="http://www.cnblogs.com/mfrbuaa/p/5419937.html#_Toc1591">6. 5. Type/// everything 2</a>

  find / -name '2615806806b47d00dabc4571f1be3315.jpg'

/images_all/zonghe_kuvarsit/kuvarsit/image_medium/2615806806b47d00dabc4571f1be3315.jpg

/images_all/watches_kuvarsit/image_medium/2615806806b47d00dabc4571f1be3315.jpg

   find / -name 'order*'

作者::老哇的爪子Attilax艾龍,EMAIL:[email protected]

轉載請注明來源: http://blog.csdn.net/attilax

   find / -name 'order*'  -type d

locate指令事實上是"find -name"的還有一種寫法,可是要比後者快得多,原因在于它不搜尋詳細檔案夾,而是搜尋一個資料庫(/var/lib/locatedb),這個資料庫中含 有本地全部檔案資訊。Linux系統自己主動建立這個資料庫,而且每天自己主動更新一次,是以使用locate指令查不到最新變動過的檔案。為了避免這樣的情況,可 以在使用locate之前,先使用updatedb指令,手動更新資料庫。

whereis指令僅僅能用于程式名的搜尋,并且僅僅搜尋二進制檔案(參數-b)、man說明檔案(參數-m)和源碼檔案(參數-s)。

假設省略參數。則傳回全部資訊。

whereis指令的使用執行個體:

  $ whereis grep

which指令的作用是。在PATH變量指定的路徑中,搜尋某個系統指令的位置,而且傳回第一個搜尋結果。也就是說,使用which指令,就能夠看到某個系統指令是否存在,以及運作的究竟是哪一個位置的指令。

which指令的使用執行個體:

  $ which grep

type指令事實上不能算查找指令,它是用來區分某個指令究竟是由shell自帶的。還是由shell外部的獨立二進制檔案提供的。假設一個指令是外部指令,那麼使用-p參數,會顯示該指令的路徑,相當于which指令。

type指令的使用執行個體:

本文轉自mfrbuaa部落格園部落格,原文連結:http://www.cnblogs.com/mfrbuaa/p/5419937.html,如需轉載請自行聯系原作者