Skip to content

Instantly share code, notes, and snippets.

@jgatjens
Last active July 17, 2016 21:41
Show Gist options
  • Save jgatjens/ac0a43d03cd35e111cb7 to your computer and use it in GitHub Desktop.
Save jgatjens/ac0a43d03cd35e111cb7 to your computer and use it in GitHub Desktop.
lowercase filenames
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