mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-20 12:20:53 +08:00
9 lines
120 B
Bash
Executable File
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
|