GNU使用find命令

2022-02-23 06:52:35 字數 402 閱讀 3694

使用find命令

1、在當前資料夾下查詢特定檔名,包含子目錄

find . -name 'file name expression'

注意: . 號可以被省略

在當前資料夾下查詢特定檔名,包含子目錄。不區分大小寫

find   -iname 'file name expression'

2、在當前檔案下列出所有資料夾,包含子目錄

find -type d

3、在當前檔案下列出所有一般檔案

find -type f

4、在當前檔案下列出所有空資料夾,包含子目錄

find -type d -empty

5、查詢最近status被改變過的檔案,以分鐘為單位。比如說1分鐘之前

find -cmin 1

find命令使用

注意 grep egrep fgrep命令都文字查詢,是查詢檔案裡的內容。檔案查詢用locate命令 find命令。1 locate命令 是全系統內進行查詢,是根據資料庫進行的。這個資料庫是系統每天晚上自動建立的。特點 非實時,模糊匹配,查詢是根據全系統檔案資料庫進行,速度快。當前對檔案的操作,不會...

find命令使用

find命令 find path option action 引數 1.與時間相關引數 atime ctime mtime 以mtime為例 mtime n n為數字,意義為在n天之前的 一天之內 被更改過的檔案 mtime n 列出在n天之前 不含n本身 被更改過的檔名 mtime n 列出在n天...

find 命令的使用

find 實時查詢工具,通過遍歷指定路徑下的檔案系統完成檔案查詢。特點 查詢速度慢 精確查詢 實時查詢 語法格式 find option 查詢路徑 查詢條件 處理動作 查詢路徑 指定具體目標路徑 預設為當前目錄 查詢條件 指定的查詢標準,可以檔名 大小 型別 許可權等標準進行 預設為找出指定路徑下所...