tbot-with-extras/run_periodically.sh
Remy Moll cb2ec0ee69 hem
2020-05-13 16:30:09 +02:00

9 lines
107 B
Bash

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