-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlauncher.sh
22 lines (17 loc) · 851 Bytes
/
launcher.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
echo "************************************************"
echo "* Multi-access Edge Fog Crowdsensing Simulator *"
echo "* *"
echo "* @authors: Dimitri Belli *"
echo "* Paolo Barsocchi *"
echo "* Antonino Crivello *"
echo "* Michele Girolami *"
echo "* Davide La Rosa *"
echo "* @contact: dimitri.belli@isti.cnr.it *"
echo "* @licence: GPLv3 *"
echo "************************************************"
echo "Initializing the simulator . . ."
python3 main.py
echo "**********************************************"
echo "* END *"
echo "**********************************************"