I am looking for a way in Bash to rename my file prefixes. These files are all in one folder. No other files will be in it.
00 - Artist - Title.mp3
01 - Artist - Title.mp3
... and so on
to
01 - Artist - Title.mp3
02 - Artist - Title.mp3
... and so on
The prefix can also be only a single (0, 1, 2, ...), double(00, 01, 02, ...), triple, ... prefixes.
Perl solution:
The regular expression match extracts the number to $n and the rest to $r. $n + 1 is then formatted by sprintf to be zero padded, having the same length as the original number.
Note that it changes the length of the number for 9, 99, etc.