Images/genicons_lx.sh
author edouard
Tue, 22 Feb 2011 17:05:07 +0100
changeset 504 f88e0ebd8fe4
parent 196 54f5020531f6
permissions -rw-r--r--
Forced variable now supported in GraphicViewer
#!/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