I want to rename files as to delete unneccessary dots. ie:
File.something.jpg -> Filesomething.jpg
I.Have.Too.Many.Dots.png -> IHaveTooManyDots.png
How can this be done? find -name *.*.* lists them all, but I've been unable to write an expression for sed as it doesn't support lazy regexes.