Bash: batch renaming files using the rename utility
If you need to batch rename a set of files, the ‘rename‘ utility is much easier than alternatives such as pairing find/exec or even putting together a small script. The rename utility gives you all the power of Perl regular expressions for converting the filenames. # make sure utility is installed $ sudo apt install … Bash: batch renaming files using the rename utility