How do I write a bash script to restart a process if it dies?

后端 未结 8 2223
-上瘾入骨i
-上瘾入骨i 2020-11-22 02:47

I have a python script that\'ll be checking a queue and performing an action on each item:

# checkqueue.py
while True:
  check_queue()
  do_something()
         


        
8条回答
  •  滥情空心
    2020-11-22 03:09

    if ! test -f $PIDFILE || ! psgrep `cat $PIDFILE`; then
        restart_process
        # Write PIDFILE
        echo $! >$PIDFILE
    fi
    

提交回复
热议问题