#!/bin/sh
if [ -d 24x24 ]; then
	echo "Kill the 24x24 directory manually first!"
	exit 1
fi

cp -r 22x22 24x24
find 24x24/ -type f -name "*.png" | while read PNG; do
	mogrify -border 1 -bordercolor transparent "$PNG"
done
