images/smilies/convert.sh
author Dan
Sun, 06 Apr 2008 14:02:20 -0400
changeset 518 2b826f2640e9
parent 0 902822492a68
permissions -rw-r--r--
SECURITY: Disabled caching of decrypted DiffieHellman login requests

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