1607 shaares
1 lien privé
1 lien privé
1 résultat
taggé
batch_rename
Rename Using the Perl Rename Utility
The following command replaces the occurrence of file in the filename to photo.
rename 's/file/photos/' *
Use the following command for changing lowercase filenames to uppercase. Switch the substitution pattern for converting to lowercase.
rename 'y/a-z/A-Z/' # converts to uppercase
rename 'y/A-Z/a-z/' # converts to lowercase