5 lines
82 B
Bash
5 lines
82 B
Bash
|
#!/bin/bash
|
||
|
for ((i=1; i<=$1; i++))
|
||
|
do
|
||
|
python3 ./main.py auto true bestfs
|
||
|
done
|