r0c/scripts/py.sh

24 lines
360 B
Bash
Raw Normal View History

2018-02-12 00:47:18 +00:00
#!/bin/bash
[[ -e r0c/__main__.py ]] || cd ..
[[ -e r0c/__main__.py ]] || cd ~/dev/r0c
2018-02-12 00:47:18 +00:00
[[ -e r0c/__main__.py ]] || exit 1
ports='2323 1531'
[[ $(id -u) -eq 0 ]] &&
ports='23 531'
while true
do
for n in 2 3
do
printf '\n\033[0;1;33mstarting py%s\033[0m\n\n' $n
2018-02-10 16:07:18 +00:00
sleep 0.5 || break
python$n -m r0c $ports
[[ $? -eq 1 ]] &&
sleep 1
done
done
2018-01-07 09:29:36 +00:00