images/smilies/convert.sh
author Dan
Mon, 05 May 2008 20:31:19 -0400
changeset 545 e4c8e706f167
parent 0 902822492a68
permissions -rw-r--r--
Add standard header comment block and date of changes to tiny_mce_gzip to conform to GPL/LGPL

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