Tue, 14 Jun 2022 23:04:49 +0300
Edit tools: get rid of the preview polygon and render the result-to-be
6 | 1 | #!/bin/bash |
2 | for flag in *.svg | |
3 | do | |
4 | flag_png="${flag%.svg}.png" | |
5 | echo "$flag => $flag_png" | |
6 | inkscape -z -e ${flag_png} -w 64 $flag | |
7 | done |