#!/bin/sh
if [ "$1" = "" ]; then
echo "Type $0 ClassC"
exit 0
fi
rm -rf classc.tmp
echo "Checking the entire class c for any nameds...Wait"
./ss.pl $1 53 | grep "Connection accepted." >> classc.tmp
for i in `/bin/cat classc.tmp | cut --bytes=11-28`
do
./check $i
done
exit 0
fi
