images/smilies/convert.sh
author Dan
Sun, 06 Apr 2008 15:30:39 -0400
changeset 519 94214ec0871c
parent 0 902822492a68
permissions -rw-r--r--
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.

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