Linux find命令用來在指定目錄下查找文件。
命令組成:find [搜索目錄] [參數] [文件屬性]
參數說明:
-name:文件名稱符合 name 的文件。-iname 會忽略大小寫
舉例說明:
a. 搜索范圍從根目錄開始,搜索文件1.txt:find / -name 1.txt
b. 搜索范圍從home目錄開始,搜索文件1.txt:find /home -name 1.txt
c. 搜索范圍從當前目錄開始,搜索文件1.txt: find . -name 1.txt
d. 搜索范圍從home目錄開始,搜索以 .txt 結尾的文件: find /home -name *.txt
http://xxxxxx/Linuxjc/1161507.html TechArticle