maximesson | 98f822c | 2019-12-11 16:53:33 +0100 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | # One argument can be used along with the script call: it is the port on which one wish to run the simulator. | ||||
4 | |||||
5 | if [ $# -eq 0 ] | ||||
6 | then | ||||
7 | python3 ./main.py | ||||
8 | else | ||||
9 | python3 ./main.py $1 | ||||
10 | fi |