xwords/xwords4/linux/scripts/newrelay.sh
Andy2 0d7165f881 add ability to run gtk from newrelay.sh. Trying to run 50 instances
crashes the relay as ACKs take too long to come back.
2010-09-16 01:44:54 -07:00

41 lines
837 B
Bash
Executable file

#!/bin/sh
DICT=${DICT:-./dict.xwd}
COOKIE=${COOKIE:-foo}
NGAMES=${NGAMES:-1}
NPLAYERS=${NPLAYERS:-2}
USE_GTK=${USE_GTK:-FALSE}
[ $USE_GTK = FALSE ] && CURSES_PARM="-u -0"
usage() {
echo "usage: [env=val *] $0" 1>&2
echo " current env variables and their values: " 1>&2
for VAR in COOKIE DICT NGAMES NPLAYERS USE_GTK; do
echo "$VAR:" $(eval "echo \$${VAR}") 1>&2
done
exit 0
}
while [ -n "$1" ]; do
case $1 in
*) usage
;;
esac
shift
done
for II in $(seq $NGAMES); do
REMOTES=""
for JJ in $(seq $((NPLAYERS-1))); do
REMOTES="${REMOTES} -N"
done
for JJ in $(seq $NPLAYERS); do
./obj_linux_memdbg/xwords $CURSES_PARM -d $DICT -r Eric $REMOTES \
-C $COOKIE -q 2 2>log_${II}_${JJ}.txt >/dev/null &
done
done
wait
echo "$0 done"