etherlab/images/genicons.sh
author Laurent Bessard
Mon, 25 Jun 2012 20:06:17 +0200
changeset 2068 05a267b1a362
parent 2043 27d4cb689a79
permissions -rwxr-xr-x
Adding support using plcopeneditor bitmap library for icon request
#!/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