blob: 9052ecf3de2943a96b93f5cac981a97c3552314e [file] [log] [blame]
maximesson98f822c2019-12-11 16:53:33 +01001#!/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
5if [ $# -eq 0 ]
6then
7 python3 ./main.py
8else
9 python3 ./main.py $1
10fi