File indexing completed on 2024-04-28 03:48:30

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