####3.find####
1.locate filename ##在檔案資料庫中搜尋filename資訊,updatedb更新檔案資料庫
2.find
find 查詢位置 -條件 條件值 -exec 動作 {} \;
-name
-not 條件
-user ######所屬使用者查詢
-group ######所屬組查詢
-size ######檔案大小查詢
-perm ######按照許可權查詢
-maxdepth #####按照最大層數查詢
-mindepth #####按照最小層數查詢
-a #####表示並且
-o #####表示或者
-type f 檔案
d 目錄
c 字元裝置
b 塊裝置
s 套節字
l 鏈結
首先在/mnt 下建立檔案
find 命令 Linux命令篇 find命令
find name txt o name pdf print演示結果 find regex txt pdf iregex 忽略大小寫的正則 查詢所有非txt文字 find name txt print演示結果 列印出當前目錄的檔案 深度為1 find maxdepth 1 type f演示結果 5....
find命令的引數
find path option action 與時間有關的引數 mtime ctime atime n n為數字 n天之前 n 在n天之內 包含n天 n 在n天之前 不含n天 newer file 列出比file還要新的檔案 有關使用者和組名的引數 uid n n為數字 這個數字是使用者帳號的id...
find 命令的使用
find 實時查詢工具,通過遍歷指定路徑下的檔案系統完成檔案查詢。特點 查詢速度慢 精確查詢 實時查詢 語法格式 find option 查詢路徑 查詢條件 處理動作 查詢路徑 指定具體目標路徑 預設為當前目錄 查詢條件 指定的查詢標準,可以檔名 大小 型別 許可權等標準進行 預設為找出指定路徑下所...