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. #
  2. # 1. 监听app.out,如果app.out退出,则重启app.out
  3. #
  4. # 1. 监听app.out,如果app.out退出,则重启app.out
  5. while true; do
  6. ps -ef | grep app.out | grep -v grep
  7. if [ $? -ne 0 ]; then
  8. echo "app.out is not running, restart it"
  9. cd /app
  10. ./app.sh
  11. fi
  12. sleep 1
  13. done