Rename *FINAL.mkv to *.mkv keeping original "*"

Solution 1:

Assuming the word FINAL comes only once in the filenames, you can do:

rename -n 's/FINAL//' *.mkv

This will do the dry run. After being sure you can carry out the operation :

rename 's/FINAL//' *.mkv