svg-to-png.sh@232e7634cc8a
svg-to-png.sh
Thu, 09 Jun 2022 13:32:55 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Thu, 09 Jun 2022 13:32:55 +0300
- changeset 210
- 232e7634cc8a
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
more refactoring, dosn't build yet
#!/bin/bash
mkdir --parents icons
for svgfile in $(find icons_svg -name '*.svg')
do
pngfile="icons/$(basename ${svgfile%.svg}.png)"
if [[ ! -f "${pngfile}" ]]
then
echo "$svgfile => $pngfile"
convert -background none "${svgfile}" "${pngfile}"
fi
done