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 ../../../Updates/$i ] ; then
		echo "Already have $i in Updates, 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 /mnt/src/scientific/30rolling/x86_64/errata/obsolete/RPMS/$i ] ; then
		echo "Already have $i in obsolete/RPMS, so deleting it."
		rm $i
		continue
	fi
	if [ -f /mnt/src/scientific/30rolling/x86_64/errata/debuginfo/RPMS/$i ] ; then
		echo "Already have $i in debuginfo/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
