Skip to content

Instantly share code, notes, and snippets.

@grahammills
Created October 23, 2014 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grahammills/b62876162a7b950c61fe to your computer and use it in GitHub Desktop.
Save grahammills/b62876162a7b950c61fe to your computer and use it in GitHub Desktop.
OSX Lowercase
for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment