/usr/games/risk is in xfrisk 1.2-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh -e
# Computer AI players to load
OPPS="aiDummy aiConway aiColson"
if [ $# -ge 1 ]; then
SERVER=$1
else
SERVER=localhost
echo -n Loading local riskserver into the background...
/usr/games/friskserver localhost > /dev/null &
echo done.
fi
for i in $OPPS; do
echo -n Loading computer player $i for play on $SERVER...
/usr/games/$i $SERVER > /dev/null &
echo done.
done
echo -n Now starting xfrisk client for play on $SERVER...
/usr/games/xfrisk $SERVER &
echo done.
|