find /etc -iname grup.conf 查找名为grup.conf的文件及文件夹,不区分大小写
find /etc -perm 755 查找权限为755的文件及文件夹,也使用 /或 -包含及大于 +完全符合
find /etc/ -mmin -50 -type f 找出50分钟之内被修改过的件
find /etc -mtime +5 -type f 查找出5天之前的修改过的文件
find /etc -size +/-100M -type f 查找出大于/小于100m的文件
find /etc -user/-group test 找出拥有者/组为test的文件及文件夹
find /etc -nouser -nogroup 找出即没有拥有者也没有拥有组的文件及文件夹
find /etc -links +2 查找连接数大于2的文件及目录
find /etc -user test -exec cp -a {} /root/findfile \; 找出并cp文件
find /etc -user test | xargs chown test2
与-exce 类似,但区别是-exec是等到find 找完后再一条条处理,数据量大的时候会使内存溢出,
而xargs是find找到一条处理一条,内存中只有一个进程.