images/smilies/convert.sh
author Dan
Sat, 08 Mar 2008 12:13:23 -0500
changeset 495 00f5cd31217a
parent 0 902822492a68
permissions -rw-r--r--
Fixed undefined variable ($row['is_regex'] instead of $is_regex) in sessions.php

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