This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/tg-launch.sh

12 lines
336 B
Bash
Raw Normal View History

#!/bin/sh
# Launch tg listening on the default port (change this if you've changed it in
2016-08-14 04:26:44 +02:00
# config.lua), delete state file after stop, wait five seconds, and restart.
while true; do
2016-08-14 04:46:18 +02:00
tg/bin/telegram-cli -P 4567 -E
[ -f ~/.telegram-cli/state ] && rm ~/.telegram-cli/state
echo 'tg has stopped. ^C to exit.'
sleep 5s
done