beremiz
Clone
Summary
Browse
Changes
Graph
SVGHMI: Added keypads to svghmi test's SVG file
svghmi
2020-04-03, Edouard Tisserant
48c9a5f6ce38
file is
Executable
SVGHMI: Added keypads to svghmi test's SVG file
#!/bin/bash
INKSCAPE=inkscape
for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'`
do
if [ $i.png -nt icons.svg ]; then
echo "Skip $i"
else
rm -f $i.png
echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
"$INKSCAPE" icons.svg -z -e $i.png -i $i
fi
done