File indexing completed on 2024-10-06 03:33:55
0001 #/bin/bash 0002 for F in `find . -type f -name "*svg"` 0003 do 0004 BASE=`basename $F .svg` 0005 inkscape --export-area-page --export-png="${BASE}.png" --export-width=48 --export-height=48 "${F}" 0006 done