Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

rename or prename is Perl tool can rename multiple files using regular expression.
For example to rename ??.mp3 files to 0??.mp3

No Format
rename -v 's/(\d{2}).mp3/0$1.mp3/' ??.mp3
-v, --verbose
-n, --no-act

...