Skip to content

Instantly share code, notes, and snippets.

@dtuite
Created January 30, 2013 20:37
Show Gist options
  • Save dtuite/4676710 to your computer and use it in GitHub Desktop.
Save dtuite/4676710 to your computer and use it in GitHub Desktop.
Change a bunch of file names to lowercase.
#!/bin/sh
# Change a list of file names to lowercase
#
# Example:
#
# lowercase UPPercase.PNG
# => uppercase.png
for i in *
do
j=`echo $i | tr '[A-Z]' '[a-z]'`
mv $i $j
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment