Skip to content

Instantly share code, notes, and snippets.

@morgangiraud
Created March 5, 2018 10:35
Show Gist options
  • Save morgangiraud/f62de9810c9154645dcc18b38929bb5a to your computer and use it in GitHub Desktop.
Save morgangiraud/f62de9810c9154645dcc18b38929bb5a to your computer and use it in GitHub Desktop.
convert SVG to PNG in current folder - one liner
for f in *.svg; do convert -density 1200 -resize 1000x1000 $f ${f%%.*}.png;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment