You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
export OMP_NUM_THREADS=1
|
|
|
|
host=${1:-localhost}
|
|
port=${2:-3100}
|
|
|
|
for i in {1..11}; do
|
|
python3 ./Run_Player.py -i $host -p $port -u $i -t FCP-debug -F 1 -D 1 &
|
|
done |