word_cloud_bot/restart.sh

19 lines
488 B
Bash
Raw Normal View History

2021-05-09 03:14:12 +00:00
#/bin/bash
#environment variable
source /etc/profile
#memory
while :
do
bu=`free | awk 'NR==2{print $6}'`
ca=`free | awk 'NR==2{print $7}'`
us=`free | awk 'NR==2{print $3}'`
to=`free | awk 'NR==2{print $2}'`
mem=`expr "scale=2;($us-$bu-$ca)/$to" |bc -l | cut -d. -f2`
2021-05-09 03:14:49 +00:00
if(($mem >= 75))
2021-05-09 03:14:12 +00:00
then
echo "restart"
killall -9 python3
cd /root/word_cloud_bot && python3 main.py >> output 2>&1 &
fi
sleep 10
done