Delete Files Below Specified Size
The following command will delete any files in a directory that are under 10 kilobytes:
find -size -10k -delete
Change filesize to suit your needs.
The following command will delete any files in a directory that are under 10 kilobytes:
find -size -10k -delete
Change filesize to suit your needs.