images/smilies/render-smilies.sh
author Dan
Sun, 10 Jan 2010 17:13:03 -0500
changeset 1211 488294ceee13
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed author_uid in activation request insertion

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