for i in 7*
do
if test -e $i
then
ls -l $i
for j in 7*
do
	ls -l $j
	test $i != $j && cmp $i $j && rm -i $j
done
echo
fi
done
