#!/bin/sh
if [ $# -lt 1 ]
then
	echo $0 network
	exit 1
fi
for i in $*
do
if [ $1 != $0 ]
then
if [ -d $1 ]
then
	rm -R $1
	rm /tmp/NextHops* /tmp/egpNeighState* /tmp/neighbors* /tmp/ipAdEnt*
else
	echo $1 is not a network I know about
fi
fi
shift
done
