Images/genicons_lx.sh
author Laurent Bessard
Tue, 31 Jul 2012 17:45:06 +0200
changeset 733 c4424d8eebb0
parent 196 54f5020531f6
permissions -rw-r--r--
Adding support for checking that tab content is saved before closing it
#!/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