I’m using a GNU/Linux distribution where the utility rename comes from util-linux and I want to make full use of regular (Perl or POSIX) expression
rename
util-linux
Here is the manual page: http://linux.die.net/man/1/rename. It is pretty straightforward:
rename from to file... rename will rename the specified files by replacing the first occurrence of from in their name by to.
rename from to file...
rename will rename the specified files by replacing the first occurrence of from in their name by to.
I believe there are no regexes, it is just plain substring match.