images/smilies/convert.sh
author Dan
Thu, 26 Feb 2009 01:28:18 -0500
changeset 846 0d2d0dfbe443
parent 0 902822492a68
permissions -rw-r--r--
Plugin backend: bugfix: installing a plugin should now properly import its strings

#!/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