I would need to rename thousands of files, right now I'm doing it with removing first x characters, but it can be a lengthy process since the number of chars needed to be removed changes.
Source files are named like this:
4023 - 23 - Animal, crocodile 4 legs.txt
243 - 4 - Animal, dog 4 legs.txt
5450 - 2 - Animal, bird 2 legs.txt
Renamed:
Animal, crocodile 4 legs.txt
Animal, dog 4 legs.txt
Animal, bird 2 legs.txt
It seems the easiest it would be to trim everything before "A" appears, but I do not know how to do this. Something with a loop that could be used as a bash script would be awesome.