User Tools

Site Tools


linux:files:rename_filename_suffix_to_uppercase_or_lowercase

Linux - Files - Rename filename suffix to uppercase or lowercase

Rename a jpg suffix to JPG in the current directory.

sudo find -name "*.jpg" | while read a; do mv "$a" "${a%%.jpg}.JPG" ; done
linux/files/rename_filename_suffix_to_uppercase_or_lowercase.txt · Last modified: 2023/07/17 18:52 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki