images/smilies/convert.sh
author Dan
Tue, 04 Sep 2007 08:25:48 -0400
changeset 114 47393c6619ea
parent 0 902822492a68
permissions -rw-r--r--
Nothing special, just syncing to Scribus, several bugs have been found with GET forms and a fix is in the works

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