2015年4月17日 星期五

Mac OS X / *nix 找出目錄中檔案大小為0的檔案

給自己的備忘錄:

找出檔案 size = 0 :
> find $dirpath -type f -size 0 -exec ls {} \;

找出檔案 size > 100K
> find $dirpath -type f -size +100k -exec ls {} \;

找出檔案 size > 1M
> find $dirpath -type f -size +1M -exec ls {} \;

找出檔案 size > 1000 Bytes
> find $dirpath -type f -size +1000c -exec ls {} \;

#