tbot-with-extras/run_periodically.sh
2020-07-22 10:46:12 +02:00

10 lines
130 B
Bash

#!/bin/bash
if pgrep -x "python3" > /dev/null
then
echo "Already running"
else
cd /root/chat-bot/
python3 main.py
fi