etherlab/images/genicons.sh
author Laurent Bessard
Wed, 31 Oct 2012 12:06:04 +0100
changeset 2089 3f5c41f3d47f
parent 2043 27d4cb689a79
permissions -rwxr-xr-x
Fix bug when Drag'n Dropping located variables on Windows
#!/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