Skip to content

Instantly share code, notes, and snippets.

@glw
Created February 11, 2015 07:04
Show Gist options
  • Save glw/92735efa350e80871710 to your computer and use it in GitHub Desktop.
Save glw/92735efa350e80871710 to your computer and use it in GitHub Desktop.
change file extension
for file in *.JPG ; do mv $file `echo $file | sed 's/\(.*\.\)JPG/\1jpg/'` ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment