fixed few things

This commit is contained in:
Nick Walton
2019-04-12 14:46:34 -06:00
+4 -3
View File
@@ -1,7 +1,8 @@
#!/bin/bash
START=0
END=25
for ((I=0;I<END;I++));
START=25
END=50
for ((I=START;I<END;I++));
do
python3 main.py "$(($I * 2))" "$(( ($I + 1) * 2 ))" &
done