Skip to content

Instantly share code, notes, and snippets.

@felipelavinz
Created November 24, 2009 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save felipelavinz/242051 to your computer and use it in GitHub Desktop.
Save felipelavinz/242051 to your computer and use it in GitHub Desktop.
convertir imágenes en un directorio
for i in *.png; do convert $i -resize 50x50 $i.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment