Skip to content

Instantly share code, notes, and snippets.

@dkrnl
Last active April 28, 2016 10:38
Show Gist options
  • Save dkrnl/67cd9142f8118513a5080d274644273b to your computer and use it in GitHub Desktop.
Save dkrnl/67cd9142f8118513a5080d274644273b to your computer and use it in GitHub Desktop.
ImageMagick Resize Images Directory
for X in *.jpg; do convert "$X" -resize "1920x1200>" -strip -quality 86 "$X"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment