Skip to content

Instantly share code, notes, and snippets.

@Gabriel-p
Created January 29, 2017 02:41
Show Gist options
  • Save Gabriel-p/18c51e59caaea33577d2a86d78911245 to your computer and use it in GitHub Desktop.
Save Gabriel-p/18c51e59caaea33577d2a86d78911245 to your computer and use it in GitHub Desktop.
Resize all images in folder, renaming them
for file in *.png; do convert $file -resize 50% rszd_$file.png; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment