Problem
You would like to rename multiple files, replacing some text with something else (like replacing Pixies_The with Pixies).
Solution
Install the rename utility
1 |
sudo apt install rename |
and replace the text as follows
1 2 |
cd folder_to_rename_files rename 's/Pixies_The/Pixies/g' ** |