This does that trick:
Code:
# for i in $(ls *|cut -d'.' -f1|sort|uniq -d); do find . -name $i.mp3; done
./music.mp3
It will only list files with are named with 'multiple' extensions (more than 2).
Then, from those it will only list the ones with extension: .mp3