Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created January 16, 2017 13:48
Show Gist options
  • Save fieldoffice/706ea169d42f9e0afaf3e620a3d65096 to your computer and use it in GitHub Desktop.
Save fieldoffice/706ea169d42f9e0afaf3e620a3d65096 to your computer and use it in GitHub Desktop.
Lowercase all file names - Terminal
$ 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