#!/bin/sh # # Add 3 animals to conference 2, spacing them out for best effect # First arg is the conference ID that the animals want to enter # #set -x CONF_ID=$1 DOGSLEEPBEFOREPLAY=5 FLYSLEEPBEFOREPLAY=10 PARROTSLEEPBEFOREPLAY=8 SIPPDIR=/usr/sbin/sipp/CIF sleep ${DOGSLEEPBEFOREPLAY} ${SIPPDIR}/dog_conferee.sh $CONF_ID >& /dev/null & sleep ${FLYSLEEPBEFOREPLAY} ${SIPPDIR}/fly_conferee.sh $CONF_ID >& /dev/null & sleep ${PARROTSLEEPBEFOREPLAY} ${SIPPDIR}/parrot_conferee.sh $CONF_ID >& /dev/null &