Skip to content

Instantly share code, notes, and snippets.

@dvalters
Created May 14, 2018 06:58
Show Gist options
  • Save dvalters/66979e8d5445ed550770fee23d993888 to your computer and use it in GitHub Desktop.
Save dvalters/66979e8d5445ed550770fee23d993888 to your computer and use it in GitHub Desktop.
Resize photos bulk with convert
mkdir photos-Optimized;for photos in *.jpg;do convert -verbose $photos -quality 85% -resize 1600x900 ./photos-Optimized/$photos-Optimized.jpg ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment