Skip to content

Instantly share code, notes, and snippets.

@opsb
Created June 9, 2012 13:37
Show Gist options
  • Select an option

  • Save opsb/2901008 to your computer and use it in GitHub Desktop.

Select an option

Save opsb/2901008 to your computer and use it in GitHub Desktop.
Resize images in a directory to a maximum height/width (retaining aspect ratio)
for FILE in $(ls *.jpg | grep -v thumbnail); do convert $FILE -resize 800x600 $FILE; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment