根据大小查找文件
查找大于 15MB 的文件:
find -type f -size +15M
查找小于 12KB 的文件:
find -type f -size -12k
查找完全 12KB 大小的文件:
find -type f -size 12k
要么
find -type f -size 12288c
要么
find -type f -size 24b
要么
find -type f -size 24
一般格式:
find [options] -size n[cwbkMG]
查找 n 块大小的文件,其中+ n 表示多于 n 块,-n 表示小于 n 块,n(没有任何符号)表示正好是 n 块
块大小:
c
:bytesw
:2 个字节b
:512 字节(默认)k
:1 KBM
:1 MBG
:1 GB