This repository has been archived on 2024-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-08-09 12:30:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# You can cd to your directory here, if you want
|
|
|
|
|
# cd /home/user/TelegramPoster
|
|
|
|
|
|
|
|
|
|
while true
|
|
|
|
|
do
|
2023-06-28 08:22:18 +02:00
|
|
|
python main.py
|
2022-08-09 12:30:36 +02:00
|
|
|
echo "To completely stop TelegramPoster now, please press Ctrl+C during the countdown!"
|
|
|
|
|
echo "Restarting in:"
|
|
|
|
|
for i in 5 4 3 2 1
|
|
|
|
|
do
|
|
|
|
|
echo "$i..."
|
|
|
|
|
sleep 1
|
|
|
|
|
done
|
|
|
|
|
echo "TelegramPoster has started!"
|
|
|
|
|
done
|