mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-21 12:30:46 +08:00
9 lines
119 B
Bash
Executable File
9 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
START=25
|
|
END=50
|
|
for ((I=START;I<END;I++));
|
|
do
|
|
python3 main.py "$(($I * 2))" "$(( ($I + 1) * 2 ))" &
|
|
done
|