Skip to content

Instantly share code, notes, and snippets.

@asleepwalker
Last active August 12, 2016 10:45
Show Gist options
  • Save asleepwalker/dcca1c468788e2f932c5 to your computer and use it in GitHub Desktop.
Save asleepwalker/dcca1c468788e2f932c5 to your computer and use it in GitHub Desktop.
Rename files to lowercase
# Replace '*.JPG' with your name pattern
find . -name '*.JPG' | while read upName; do loName=`echo "${upName}" | tr '[:upper:]' '[:lower:]'`; mv "$upName" "$loName"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment