I want to rename all the files in a folder which starts with 123_xxx.txt to xxx.txt.
123_xxx.txt
xxx.txt
For example, my directory has:
123_xxx
Using rename from util-linux 2.28.2 I had to use a different syntaxt:
find -name "*.txt" -exec rename -v "123_" "" {} ";"