Sat, 05 Mar 2022 13:18:28 +0200
Add document closing
158 | 1 | #!/bin/bash |
2 | mkdir --parents icons | |
3 | for svgfile in $(find icons_svg -name '*.svg') | |
4 | do | |
5 | pngfile="icons/$(basename ${svgfile%.svg}.png)" | |
6 | echo "$svgfile => $pngfile" | |
7 | convert -background none "${svgfile}" "${pngfile}" | |
8 | done |