Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Created July 23, 2018 10:24
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 nicdoye/3d3c08af0982ea427bff7b34ca5f83d9 to your computer and use it in GitHub Desktop.
Save nicdoye/3d3c08af0982ea427bff7b34ca5f83d9 to your computer and use it in GitHub Desktop.
Rename files to lowercase, and change spaces to dashes.
#!/bin/bash
lc() {
for i in * ; do j="$(echo $i | tr '[:upper:]' '[:lower:]' | tr ' ' '-' )" ; [ "$i" != "$j" ] && mv "$i" "$j"; done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment