根據大小查詢檔案
查詢大於 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