images/smilies/render-smilies.sh
author Dan
Mon, 09 Nov 2009 09:18:29 -0500
changeset 1133 6e51ca5e29eb
parent 944 073a42e4177f
permissions -rw-r--r--
which(): added silencer to shut up errors on servers with open_basedir restriction

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