`cat $1 | awk '{print $2}' > hostname`

for i in `cat hostname`
do
 echo "Res table of $i";
 ../src/checker -O -a $i -p 7080
 echo "";
done