etherlab/images/genicons.sh
author Edouard Tisserant
Tue, 19 Feb 2019 11:27:29 +0100
changeset 2490 2d72d8a8d7e5
parent 2043 27d4cb689a79
permissions -rwxr-xr-x
Allow using one XSD based target description for many targets. Target description XSD can now use %(target_name)s to refer to target name.
#!/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