images/smilies/render-smilies.sh
author Dan
Sun, 10 May 2009 15:52:53 -0400
changeset 963 b572ce1114f1
parent 944 073a42e4177f
permissions -rw-r--r--
Wikitext redirects should work again + get_redirect() added to Namespace_* to allow plugins to extend

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