images/smilies/convert.sh
author Dan
Mon, 05 Nov 2007 17:11:37 -0500
changeset 235 c15c1d2bdeb8
parent 0 902822492a68
permissions -rw-r--r--
Second try (need config.php to exist before the API can be started, duh)

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