How to delete all files smaller than xx kB on the command line
The following command will delete all files smaller than 100 kB in the current directory and its subdirectories:
Deleted files cannot be recovered!
find . -type f -size -100k -exec rm -v {} \;
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow