Skip to content

Instantly share code, notes, and snippets.

@rauluranga
Created March 8, 2012 18:26
Show Gist options
  • Save rauluranga/2002497 to your computer and use it in GitHub Desktop.
Save rauluranga/2002497 to your computer and use it in GitHub Desktop.
termial:rename all files to 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