find
是一個非常強大的 Linux 命令,用于在文件系統中搜索和查找文件
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 # 搜索七天前修改過的文件
find /path/to/search -mtime -7 # 搜索七天內修改過的文件
find /path/to/search -type f -name "*.txt" -mtime -7 # 搜索七天內修改過的 txt 文件
find /path/to/search -type f -name "*.txt" -exec rm {} \; # 刪除搜索到的 txt 文件
find
結合其他命令:find /path/to/search -type f -name "*.txt" | xargs grep "keyword" # 在搜索到的 txt 文件中查找包含 "keyword" 的文件
這些只是 find
命令的一些基本用法。要了解更多關于 find
的高級用法,可以查看其手冊頁(man find
)或在線文檔。