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
2016-09-04 03:42:51 -04:00

17 lines
477 B
Bash
Executable File

# Launch tg listening on the default port (change this if you've changed it in
# config.lua), delete state file after stop, wait five seconds, and restart.
#!/bin/sh
if [ -d tg ]; then
while true; do
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
else
echo "tg not installed."
echo "If you're on Ubuntu, try running ./tg-install.sh."
fi