/ Published in: Bash
Rename files to lowercase easily
Expand |
Embed | Plain Text
rename 'y/A-Z/a-z/' * find ./ -type f -exec rename 'y/A-Z/a-z/' {} \;
You need to login to post a comment.
nark0ppler on 10/15/08
1 person have marked this snippet as a favorite
Rename files to lowercase easily
rename 'y/A-Z/a-z/' * find ./ -type f -exec rename 'y/A-Z/a-z/' {} \;
You need to login to post a comment.