Skip to content

Instantly share code, notes, and snippets.

@codearmorygists
Created September 19, 2012 23:09
Show Gist options
  • Save codearmorygists/3752945 to your computer and use it in GitHub Desktop.
Save codearmorygists/3752945 to your computer and use it in GitHub Desktop.
Resize images in directory
find SOURCE_DIR -print -name "*.jpg" -execdir convert -resize 800x800 -quality 80 '{}' 'TARGET_DIR/{}' ;
find Pictures/ -print -name "*.jpg" -execdir convert -resize 800x800 -quality 80 '{}' '/tmp/test/{}' ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment