linux find

-perm 权限
-prune 忽略
-user 属主
-groupname
-gid
-mtime -n +n 按照文件的更改时间来查找文件, -n表示文件更改时间距现在n天以内,+n表示文件更改时间距现在n天以前。
-newer file1 ! file2 比file1新,比file2旧
-type 查找某一类型的文件,诸如:b - 块设备文件。d - 目录。c - 字符设备文件。p - 管道文件。l - 符号链接文件。f - 普通文件。
-size n [c] 查找文件长度为n块的文件,带有c时表示文件长度以字节计。
-empty 空的文件

  1. 查找2天内被读取过的文件
    命令:

find -atime -2
输出:

[root@localhost home]# find -atime -2
.
./test
./1.log
./2.log
find /home/ -perm 777
find -size +5c
find -size 6c

你可能感兴趣的:(linux find)