Skip to content

Instantly share code, notes, and snippets.

@mazuhl
Created January 3, 2011 11:43
Show Gist options
  • Save mazuhl/763382 to your computer and use it in GitHub Desktop.
Save mazuhl/763382 to your computer and use it in GitHub Desktop.
Resize all JPEGs in directory
for i in `ls *.jpg`; do convert -resize 50% -quality 80 $i conv_$i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment