Files
Apollo3D_SE/start_7v7.sh
2026-03-20 02:33:44 -04:00

10 lines
166 B
Bash
Executable File

#!/bin/bash
export OMP_NUM_THREADS=1
host=${1:-localhost}
port=${2:-60000}
for i in {1..7}; do
python3 run_player.py --host $host --port $port -n $i -t SE &
done