Created
May 15, 2019 01:57
-
-
Save vdespa/f36ecbfdad0982aef9a26eb168ed0dc3 to your computer and use it in GitHub Desktop.
Loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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