#! /bin/sh me=`/usr/ucb/whoami` if [ $me != "rtem" ] ; then echo "You must be rtem to start the agents" exit 1 fi echo "Starting 5 cs agents in background" ./csagent -ORBconfig orb.config collection.ini-NN & sleep 10 ./csagent -ORBconfig orb.config collection.ini-AZ & sleep 10 ./csagent -ORBconfig orb.config collection.ini-WR & sleep 10 ./csagent -ORBconfig orb.config collection.ini-BK & sleep 10 ./csagent -ORBconfig orb.config collection.ini-NC & sleep 10 echo "Done."