find 一些常用参数的一些常用实例和一些具体用法和注意事项。
# 使用 name 选项
文件名选项是 find 命令最常用的选项,要么单独使用该选项,要么和其他选项一起使用。可以使用某种文件名模式来匹配文件,记住要用引号将文件名模式引起来。
| |
| $ find ~ -name "*.log" -print |
| |
| |
| $ find . -name "*.log" -print |
| |
| |
| $ find . -name "[A-Z]*" -print |
| |
| |
| $ find /etc -name "host*" -print |
| |
| |
| $ find ~ -name "*" -print |
| $ find . -print |
| |
| |
| $ find / -name "*" -print |
| |
| |
| $ find . -name "[a-z]*[4-9].log" -print |
# 用 perm 选项
按照文件权限模式用 - perm 选项,按文件权限模式来查找文件的话。最好使用八进制的权限表示法
| |
| $ find . -perm 755 -print |
还有一种表达方法:在八进制数字前面要加一个横杠 -,表示都匹配,如 - 007 就相当于 777,-005 相当于 555,
# 忽略某个目录
如果在查找文件时希望忽略某个目录,因为你知道那个目录中没有你所要查找的文件,那么可以使用 - prune 选项来指出需要忽略的目录。在使用 - prune 选项时要当心,因为如果你同时使用了 - depth 选项,那么 - prune 选项就会被 find 命令忽略。如果希望在 test 目录下查找文件,但不希望在 test/test3 目录下查找,可以用:
| $ find test -path "test/test3" -prune -o -print |
# 使用 find 查找文件的时候怎么避开某个文件目录
例一
:在 test 目录下查找不在 test4 子目录之内的所有文件
| $ find test -path "test/test4" -prune -o -print |
说明:
find [-path ..] [expression]
在路径列表的后面的是表达式
- path "test" -prune -o -print 是 -path "test" -a -prune -o -print 的简写表达式按顺序求值,-a 和 -o 都是短路求值,与 shell 的 && 和 || 类似如果
- path "test" 为真,则求值 -prune , -prune 返回真,与逻辑表达式为真;否则不求值 -prune,与逻辑表达式为假。如果 -path "test" -a -prune 为假,则求值 -print ,-print 返回真,或逻辑表达式为真;否则不求值 -print,或逻辑表达式为真。
这个表达式组合特例可以用伪码写为:
if -path "test" then
-prune
else
-print
例二
:避开多个文件夹
| |
| $ find test \( -path test/test4 -o -path test/test3 \) -prune -o -print |
例三
:查找某一确定文件,-name 等选项加在 - o 之后
| $ find test \(-path test/test4 -o -path test/test3 \) -prune -o -name "*.log" -print |
# 使用 user 和 nouser 选项
| |
| $ find ~ -user peida -print |
| |
| |
| $ find /etc -user peida -print |
| |
| |
| $ find /home -nouser -print |
# 使用 group 和 nogroup 选项
| |
| $ find /apps -group gem -print |
| |
| |
| $ find / -nogroup-print |
# 按照更改时间或访问时间等查找文件
如果希望按照更改时间来查找文件,可以使用 mtime,atime 或 ctime 选项。如果系统突然没有可用空间了,很有可能某一个文件的长度在此期间增长迅速,这时就可以用 mtime 选项来查找这样的文件。
用减号 -
来限定更改时间在距今 n 日以内的文件,而用加号 +
来限定更改时间在距今 n 日以前的文件
| |
| $ find / -mtime -5 -print |
| |
| |
| $ find /var/adm -mtime +3 -print |
# 查找比某个文件新或旧的文件
如果希望查找更改时间比某个文件新但比另一个文件旧的所有文件,可以使用 - newer 选项。
| |
| $ find -newer log2012.log ! -newer log2017.log |
| |
| |
| $ find . -newer log2012.log -print |
# 使用 type 选项
| |
| $ find /etc -type d -print |
| |
| |
| $ find . ! -type d -print |
| |
| |
| $ find /etc -type l -print |
# 使用 size 选项
可以按照文件长度来查找文件,这里所指的文件长度既可以用块(block)来计量,也可以用字节来计量。以字节计量文件长度的表达形式为 N c;以块计量文件长度只用数字表示即可。
在按照文件长度查找文件时,一般使用这种以字节表示的文件长度,在查看文件系统的大小,因为这时使用块来计量更容易转换。
| |
| $ find . -size +1000000c -print |
| |
| |
| $ find /home/apache -size 100c -print |
| |
| |
| $ find . -size +10 -print |
# 使用 depth 选项
在使用 find 命令时,可能希望先匹配所有的文件,再在子目录中查找。使用 depth 选项就可以使 find 命令这样做。这样做的一个原因就是,当在使用 find 命令向磁带上备份文件系统时,希望首先备份所有的文件,其次再备份子目录中的文件。
| |
| |
| $ find / -name "CON.FILE" -depth -print |
# 使用 mount 选项
在当前的文件系统中查找文件(不进入其他文件系统),可以使用 find 命令的 mount 选项
| |
| $ find . -name "*.XC" -mount -print |