lummie.co.uk
Linux how to change the file extensions for multiple files in a directory
Where source is old extension and dest is new extension, in terminal type: for x in *.source; do mv “$x” “${x%.source}.dest”; done