images/smilies/convert.sh
author Dan
Sun, 25 Jan 2009 20:35:32 -0500
changeset 824 28d9fbcd4f0d
parent 0 902822492a68
permissions -rw-r--r--
Login: reauth: window.location.hash is now updated to include the new SID so that page reloads will use it

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