#!/bin/sh
for d in *
do
	if [ -d $d ] ; then
		rm -rf $d
	fi
done

