mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-20 12:20:53 +08:00
7 lines
105 B
Bash
Executable File
7 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
END=25
|
|
for ((I=0;I<END;I++));
|
|
do
|
|
python3 main.py "$(($I * 4))" "$(( ($I + 1) * 4 ))" &
|
|
done
|