images/smilies/convert.sh
author Dan
Sat, 03 Nov 2007 07:20:32 -0400
changeset 226 0e6478521004
parent 0 902822492a68
permissions -rw-r--r--
Fixed the one FIXME in PageUtils regarding static HTML comment system's greeting line; fixed parsing of external links in template->tplWikiFormat

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