#!/bin/bash

# requires ImageMagick

for img in *.png
do 
	convert "$img" -resize 30x30 -sharpen 3 "../$img"
done
