File indexing completed on 2024-05-19 05:46:11

0001 #!/bin/bash
0002 for i in $(ls *.svg)
0003 do
0004   file=$(echo "../"$(echo $i | awk -F . '{print $1}' )".png")
0005   echo "Exporting "$i" to "$file
0006   rm -f $file
0007   inkscape -w 16 -h 16 -e $file $i > /dev/null
0008 done;
0009 
0010 #rm ../gpasm-22.png
0011 #inkscape -w 22 -h 22 -e ../gpasm-22.png gpasm.svg