Skip to content

Instantly share code, notes, and snippets.

@fitoria
Created March 24, 2009 15:49
Show Gist options
  • Save fitoria/84169 to your computer and use it in GitHub Desktop.
Save fitoria/84169 to your computer and use it in GitHub Desktop.
#!/bin/sh
for img in `ls *.jpg`
do
echo $img
mogrify -resize 1900x -compress jpeg -quality 70 $img #cambiar el tamaño a tu gusto
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment