images/smilies/convert.sh
author Dan
Sun, 11 Jan 2009 21:31:27 -0500
changeset 804 4891baa203da
parent 0 902822492a68
permissions -rw-r--r--
If there's an onlineupgrade.php, installer index.php will link to that instead of upgrade.php (future readiness ;))

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