Created
July 8, 2013 21:46
-
-
Save eliocapelati/5952772 to your computer and use it in GitHub Desktop.
Rename files with any CaPiTaL word to lower case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for foo in *; do mv $foo `echo $foo | tr /[A-Z]/ /[a-z]/` ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment