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