9 lines
103 B
Bash
9 lines
103 B
Bash
#!/bin/bash
|
|
|
|
if pgrep -x "python3" > /dev/null
|
|
then
|
|
python3 main.py
|
|
else
|
|
echo "Not running"
|
|
fi
|