#!/bin/sh
if [ `hostname` = "rowan" ]; then
  LD_LIBRARY_PATH=/space/dbdev/marek/lib:/usr/local/mysql/lib/
  export LD_LIBRARY_PATH
fi

if [ `hostname` = "reimp" ]; then
  LD_LIBRARY_PATH=/home/ottrey/reimp/lib:/usr/local/mysql/lib/
  export LD_LIBRARY_PATH
fi

while echo RIP server started `date` >> rip.log
do
  ./whois_rip $1
  sleep 1
done

