Skip to content

Instantly share code, notes, and snippets.

@hans2103
Created July 22, 2015 09:55
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 hans2103/4821fb49a7ba6c05fd00 to your computer and use it in GitHub Desktop.
Save hans2103/4821fb49a7ba6c05fd00 to your computer and use it in GitHub Desktop.
Command Line Interface :: useful commands
// convert filenames to lowercase
$ for i in $(find . -type f -name "*[A-Z]*");do mv $i $(echo $i | tr A-Z a-z);done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment