根据大小查找文件

查找大于 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 块

块大小:

  1. c:bytes
  2. w:2 个字节
  3. b:512 字节(默认)
  4. k:1 KB
  5. M:1 MB
  6. G:1 GB