🏥 A Cooperative Medical System
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
cd src
|
|
bash -c "x-terminal-emulator -e python3.5 ./server.py 2> server.log &"
|
|
sleep 0.5
|
|
bash -c "x-terminal-emulator -e python3.5 ./client.py $@ 2> client.log &"
|
|
|
|
exit 0
|
|
|