Skip to content

Instantly share code, notes, and snippets.

@alechko
Created June 5, 2017 07:09
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 alechko/e89f1add77e557cdda423d54543d97ce to your computer and use it in GitHub Desktop.
Save alechko/e89f1add77e557cdda423d54543d97ce to your computer and use it in GitHub Desktop.
resize multiple icons with convert
for i in $(ls | cut -f1 -d. | uniq); do convert -resize 24 $i.png $i-24.png; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment