删除大小为0KB的文件
//进入指定的文件夹执行
find . -name "*" -type f -size 0c|xargs -n 1 rm -f
还可以删除指定大小的文件,只要修改对应的 -size 参数就行,例如
find . -name "*" -type f -size 1024c|xargs -n 1 rm -f
删除大小为0KB的文件
//进入指定的文件夹执行
find . -name "*" -type f -size 0c|xargs -n 1 rm -f
还可以删除指定大小的文件,只要修改对应的 -size 参数就行,例如
find . -name "*" -type f -size 1024c|xargs -n 1 rm -f