find
是 Linux 系統(tǒng)中一個非常強大的命令,用于在目錄樹中查找文件
find [搜索路徑] [表達式]
find /path/to/search -name "filename"
find /path/to/search -type f # 搜索普通文件
find /path/to/search -type d # 搜索目錄
find /path/to/search -type l # 搜索符號鏈接
find /path/to/search -size +10M # 搜索大于10MB的文件
find /path/to/search -size -10M # 搜索小于10MB的文件
find /path/to/search -size 10M # 搜索等于10MB的文件
find /path/to/search -perm 755 # 搜索權限為755的文件
find /path/to/search -perm -4000 # 搜索具有suid權限的文件
find /path/to/search -mtime 0 # 搜索今天修改過的文件
find /path/to/search -mtime +7 # 搜索7天前修改過的文件
find /path/to/search -mtime -7 # 搜索7天內(nèi)修改過的文件
find /path/to/search -type f -name "*.txt" -mtime -7 # 搜索7天內(nèi)修改過的txt文件
find /path/to/search -type f -name "*.txt" -exec rm {} \; # 刪除搜索到的txt文件
這只是 find
命令的一些基本用法,更多高級功能可以參考官方文檔或手冊頁(man find
)。