#!/bin/sh
#
# start address server, it will not start multiple copies
#

while :; do
cd $HOME/szbuwu/bin
ulimit -n 256
# Run the driver
# echo Start the driver now ...

./$addr_server 5500 &
./driver config.sz &
./driver config.sz2 &


sleep 10
done
