Created
January 16, 2017 13:48
-
-
Save fieldoffice/706ea169d42f9e0afaf3e620a3d65096 to your computer and use it in GitHub Desktop.
Lowercase all file names - Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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