find .
在/home目录下查找以.txt结尾的文件名
find /home -name ".txt"
同上,但忽略大小写
find /home -iname ".txt"
当前目录及子目录下查找所有以.txt和.pdf结尾的文件
find . \( -name ".txt" -o -name ".pdf" \)
或
find . -name ".txt" -o -name ".pdf"
匹配文件路径或者文件
find /usr/ -path "local"
基于正则表达式匹配文件路径
find . -regex ".\(\.txt\|\.pdf\)$"
同上,但忽略大小写
find . -iregex ".\(\.txt\|\.pdf\)$"
否定参数
找出/home下不因此.txt结尾的文件
find /home ! -name ".txt"
根据文件类型进行搜索
find . -type 类型参数
类型参数列表:
f 普通文件l 符号连接d 目录c 字符设备b 块设备s 套接字p Fifo基于目录深度搜索向下最大深度限定为3
find . -maxdepth 3 -type f
搜索出深度间隔当前目录至少2个子目录的所有文件
find . -mindepth 2 -type f
根据文件韶光戳进行搜索
find . -type f 韶光戳
UNIX/Linux文件系统每个文件都有三种韶光戳:
访问韶光(-atime/天,-amin/分钟):用户最近一次访问韶光。修正韶光(-mtime/天,-mmin/分钟):文件末了一次修正韶光。变革韶光(-ctime/天,-cmin/分钟):文件数据元(例如权限等)末了一次修正韶光。搜索最近七天内被访问过的所有文件find . -type f -atime -7
搜索恰好在七天前被访问过的所有文件
find . -type f -atime 7
搜索超过七天内被访问过的所有文件
find . -type f -atime +7
搜索访问韶光超过10分钟的所有文件
find . -type f -amin +10
找出比file.log修正韶光更长的所有文件
find . -type f -newer file.log
根据文件大小进行匹配
find . -type f -size 文件大小单元
文件大小单元:
b —— 块(512字节)c —— 字节w —— 字(2字节)k —— 千字节M —— 兆字节G —— 吉字节搜索大于10KB的文件
find . -type f -size +10k
搜索小于10KB的文件
find . -type f -size -10k
搜索即是10KB的文件
find . -type f -size 10k
删除匹配文件
删除当前目录下所有.txt文件
find . -type f -name ".txt" -delete
根据文件权限/所有权进行匹配
当前目录下搜索出权限为777的文件
find . -type f -perm 777
找出当前目录下权限不是644的php文件
find . -type f -name ".php" ! -perm 644
找出当前目录用户tom拥有的所有文件
find . -type f -user tom
找出当前目录用户组sunk拥有的所有文件
find . -type f -group sunk
借助-exec选项与其他命令结合利用
找出当前目录下所有root的文件,并把所有权变动为用户tom
find .-type f -user root -exec chown tom {} \;
上例中,{} 用于与-exec选项结合利用来匹配所有文件,然后会被更换为相应的文件名。
找出自己家目录下所有的.txt文件并删除
find $HOME/. -name ".txt" -ok rm {} \;
上例中,-ok和-exec行为一样,不过它会给出提示,是否实行相应的操作。
查找当前目录下所有.txt文件并把他们拼接起来写入到all.txt文件中
find . -type f -name ".txt" -exec cat {} \;> all.txt
将30天前的.log文件移动到old目录中
find . -type f -mtime +30 -name ".log" -exec cp {} old \;
找出当前目录下所有.txt文件并以“File:文件名”的形式打印出来
find . -type f -name ".txt" -exec printf "File: %s\n" {} \;
由于单行命令中-exec参数中无法利用多个命令,以下方法可以实现在-exec之后接管多条命令
-exec ./text.sh {} \;
搜索但跳出指定的目录
查找当前目录或者子目录下所有.txt文件,但是跳过子目录sk
find . -path "./sk" -prune -o -name ".txt" -print
find其他技巧网络
要列出所有长度为零的文件
find . -empty