aboutsummaryrefslogtreecommitdiffstats
path: root/python/start.sh
blob: 26a4b70d2229fd62d7a1b690bfddf93c7bc79e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<<<<<<< HEAD
#/bin/bash
(cd dotsandboxes; python3 dotsandboxesserver.py 8080) &
python3 agent.py 10001 &
python3 agent.py 10002 &

echo "Press enter to close all programs"
read TRASH;
=======
(cd dotsandboxes; python3 dotsandboxesserver.py 8080) &
python3 agent.py 10001 &
python3 agent.py 10002 &
read -p "Press enter to close all programs."
>>>>>>> f6e623d... change base???

trap "exit" INT TERM
trap "kill 0" EXIT