#! /bin/sh
for f in *.mgp; do
    if [ "$f" != "default.mgp" ]; then
	./mgp2html $f
    fi
done
exit 0
