for i in *.rpm
do
	if [ -f ../../../SL/RPMS/$i ] ; then
		echo "Already have $i in SL/RPMS, so deleting it."
		rm $i
		continue
	fi
	if [ -f ../../obsolete/RPMS/$i ] ; then
		echo "Already have $i in obsolete/RPMS, so deleting it."
		rm $i
		continue
	fi
	if [ -f ./hold.errata/$i ] ; then
		echo "Already have $i in ./hold.errata/ , so deleting it."
		rm $i
		continue
	fi
	if [ -f ../../moved/RPMS/$i ] ; then
		echo "Already have $i in ./hold.errata/ , so deleting it."
		rm $i
		continue
	fi
	echo ""
done
