Images/genicons.sh
author Edouard Tisserant
Sat, 26 Mar 2011 22:54:33 +0100
changeset 506 553747b2e980
parent 184 d3e6484ebe85
permissions -rw-r--r--
Solve "global name 'ID_TRANSITIONCONTENTDIALOGSPACER' is not defined" error on "Create a new divergence" in SFC editor.
#!/bin/bash

INKSCAPE=/cygdrive/c/Program\ Files/Inkscape/inkscape.exe

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