Skip to content

Instantly share code, notes, and snippets.

@JosiasSena
Created July 15, 2016 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosiasSena/4d60dabeee0318a8b4768ed816745870 to your computer and use it in GitHub Desktop.
Save JosiasSena/4d60dabeee0318a8b4768ed816745870 to your computer and use it in GitHub Desktop.
Set all file names in current directory to lowercase
#!/usr/bin/env bash
for file in *; do mv "$file” "`echo $file | tr "[:upper:]" "[:lower:]"`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment