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
)或在线文档。