10 lines
130 B
Bash
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
|