Files
Clover-Edition/other/generate.sh
T
2019-09-10 12:35:11 -06:00

9 lines
120 B
Bash
Executable File

#!/bin/bash
START=80
END=100
for ((I=START;I<END;I++));
do
python3 main.py "$(($I * 1))" "$(( ($I + 1) * 1 ))" &
done