Images/genicons_lx.sh
author b.taylor@willowglen.ca
Thu, 03 Sep 2009 08:56:02 -0600
changeset 420 c08d053b74b3
parent 196 54f5020531f6
permissions -rw-r--r--
order the result of GetBaseTypes to make types easier to find in the UI
#!/bin/bash

INKSCAPE=inkscape

for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
do
 echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
 rm  -f $i.png
 "$INKSCAPE" icons.svg -z -e $i.png -i $i
done