images/smilies/convert.sh
author Dan
Mon, 28 Dec 2009 16:52:41 -0500
changeset 335 59fee40b4644
parent 0 902822492a68
permissions -rw-r--r--
Fixed a couple non-security sanitizer and editor bugs

#!/bin/bash
for f in *.svg; do
    echo Converting $f
    fname=`echo $f | cut -d '.' -f 1`
    rm -f $fname.png
    inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done