images/smilies/convert.sh
author Dan
Sat, 01 Mar 2008 18:55:54 -0500
changeset 466 1cc8a038ad20
parent 0 902822492a68
permissions -rw-r--r--
Fixed improper serializing of IP that could allow reusing of key from multiple IP addresses.

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