Skip to content

Instantly share code, notes, and snippets.

@jescalan
Created January 26, 2012 17:12
Show Gist options
  • Save jescalan/1683856 to your computer and use it in GitHub Desktop.
Save jescalan/1683856 to your computer and use it in GitHub Desktop.
Bash, change file extensions
for f in *.jpeg; do mv "$f" "`basename "$f" .jpeg`.jpg"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment