You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
307 B

#
# 1. 监听app.out,如果app.out退出,则重启app.out
#
# 1. 监听app.out,如果app.out退出,则重启app.out
while true; do
ps -ef | grep app.out | grep -v grep
if [ $? -ne 0 ]; then
echo "app.out is not running, restart it"
cd /app
./app.sh
fi
sleep 1
done