Skip to content

Instantly share code, notes, and snippets.

@vdespa
Created May 15, 2019 01:57
Show Gist options
  • Save vdespa/f36ecbfdad0982aef9a26eb168ed0dc3 to your computer and use it in GitHub Desktop.
Save vdespa/f36ecbfdad0982aef9a26eb168ed0dc3 to your computer and use it in GitHub Desktop.
Loop
while true; do for f in *.svg; do echo "Processing $f file.."; rsvg-convert -h 1080 $f > $f.png; rm $f; done; sleep 5; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment