File size: 369 Bytes
497aa85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
export path=/home/atualli/.local/lib/python3.8/site-packages:$PATH
cd ~/Projetos/huggingface/yoloxTeste_GPU
SERVER=192.168.0.153
PORT=8081

if lsof -Pi :$PORT -sTCP:LISTEN -t >/dev/null ; then
    echo "running"
else
    ./telegramCrise.sh "reiniciando_yolox_GPU_linux_192.168.0.153:8081"
    pkill -f app1.py
    python app1.py &
    echo "not running"
fi