Today I rediscovered the rename command (yes I used it in the past and documented it here, but I forgot).
I needed to rename name *.cpp files to *.cxx, then I used:
$ rename 's/\.cpp$/\.cxx/' *.cpp
Very easy!
Source: https://www.tecmint.com/rename-multiple-files-in-linux/
