6 lines
104 B
Bash
Executable file
6 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
export FLASK_APP=gymserver.py
|
|
for i in {0..31}
|
|
do
|
|
python gymserver.py $((5000 + i)) &
|
|
done
|