#!/bin/sh
for d in *
do
	if [ -d $d ] ; then
		zip -r $d.zip $d
	fi
done

