6 lines
105 B
Bash
Executable File
6 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
for ((i=1; i<=$1; i++))
|
|
do
|
|
echo "Run "$i"/"$1
|
|
python3 ./main.py auto true bestfs
|
|
done |