Skip to content

Instantly share code, notes, and snippets.

@arodbits
Created August 28, 2017 21:02
Show Gist options
  • Save arodbits/87ed5797a56dae4acecc5c86429db771 to your computer and use it in GitHub Desktop.
Save arodbits/87ed5797a56dae4acecc5c86429db771 to your computer and use it in GitHub Desktop.
Lowercase filenames
for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment