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 {} \;