Skip to content

Instantly share code, notes, and snippets.

@dkrnl
Last active May 19, 2017 05:08
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 dkrnl/4645bff5b6768109124fabb197d6c771 to your computer and use it in GitHub Desktop.
Save dkrnl/4645bff5b6768109124fabb197d6c771 to your computer and use it in GitHub Desktop.
jpegtran all jpeg files in directroy
#!/bin/sh
find . -name "*.jpg" -type f -exec jpegtran -verbose -copy none -optimize -outfile {} {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment