Skip to content

Instantly share code, notes, and snippets.

@roberto-butti
Created December 3, 2019 13:22
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 roberto-butti/8c8e5983c90344a6b168922ef60d123a to your computer and use it in GitHub Desktop.
Save roberto-butti/8c8e5983c90344a6b168922ef60d123a to your computer and use it in GitHub Desktop.
Resize image max 64px
for i in $(ls -1 public/assets/img/markers/*.png);do convert $i -resize 64x64\> $(basename $i) ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment