Skip to content

Instantly share code, notes, and snippets.

@apermuy
Last active December 7, 2019 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apermuy/b0f6a4986085d3100764cc5606bc57dc to your computer and use it in GitHub Desktop.
Save apermuy/b0f6a4986085d3100764cc5606bc57dc to your computer and use it in GitHub Desktop.
Script imagemagick para redimensionar imágenes
#!/bin/bash
for f in *.JPG; do
NOME=`echo $f |cut -d. -f1`
echo "Convertindo imaxe orixinal -> $f"
convert $f -resize 33% $NOME-redimensionada-33.JPG
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment