Skip to content

Instantly share code, notes, and snippets.

@cwvhogue
Last active December 24, 2015 02:29
Show Gist options
  • Select an option

  • Save cwvhogue/6731441 to your computer and use it in GitHub Desktop.

Select an option

Save cwvhogue/6731441 to your computer and use it in GitHub Desktop.
Command to create PNG thumbnails from JPEG images in the same directory.
time find . -name '*.jpg' -exec sh -c 'convert "{}" -thumbnail 10000@ -strip -quality 95 PNG8:`basename "{}" jpg`png' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment