rename files to lower case


/ Published in: Bash
Save to your folder(s)

Rename files to lowercase easily


Copy this code and paste it in your HTML
  1. rename 'y/A-Z/a-z/' *
  2. find ./ -type f -exec rename 'y/A-Z/a-z/' {} \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.