One-liner
find . -size 0 | while read f; do rm "${f%.*}."*; done
You must be in the current directory, but it’s that’s simple.
One-liner
find . -size 0 | while read f; do rm "${f%.*}."*; done
You must be in the current directory, but it’s that’s simple.