Images/genicons_lx.sh
author b.taylor@willowglen.ca
Fri, 18 Sep 2009 10:31:01 -0600
changeset 430 8efd4c6874cd
parent 196 54f5020531f6
permissions -rw-r--r--
on Windows, make sure that Types tree items are selected when right-clicked.
This fixes a bug where the wrong element can be deleted.
#!/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