Skip to content

Instantly share code, notes, and snippets.

@mcav
Created April 26, 2013 15:59
Show Gist options
  • Save mcav/5468358 to your computer and use it in GitHub Desktop.
Save mcav/5468358 to your computer and use it in GitHub Desktop.
Recursively, losslessly convert all JPEGs into Progressive JPEGs
brew install jpeg
find . -type f -name '*.jpg' -exec jpegtran -progressive -outfile {} {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment