删除0字节文件:
find ./ -name "*" -type f -size 0c | xargs -n 1 rm -f
删除固定1K的文件:
find . -name "*" -type f -size 1024c | xargs -n 1 rm -f