blob: ce6d585c59874eb874ab44971ec25e935e4f725d (
plain) (
tree)
|
|
#! /bin/sh
for F in *.svg
do
for S in "16" "22" "24" "32" "48"
do
SIZE="$S"x"$S"
D=$(echo $F | sed -e "s/scalable/$SIZE/g" | sed -e "s/.svg/.png/")
if [ ! -e $D ]
then
inkscape --export-png=$D -w $S -h $S $F
fi
done
done
|