images/smilies/convert.sh
author Dan
Sun, 22 Mar 2009 00:45:56 -0400
changeset 883 ac2cef868fa9
parent 0 902822492a68
permissions -rw-r--r--
Live ReAuth: only show "timed out" error if jumping to admin page

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