Linux下启动进程脚本

判断进程是否存在,如果不存在就启动它,如果存在就重启它。


#!/bin/bash

#判断进程是否存在,如果不存在就启动它如果存在就重启它

while true; do

cd /home/neousys/Documents/smartcockpit

#启动一个循环,定时检查进程是否存在

server=`ps aux | grep smartcockpit | grep -v grep`

if [ ! "$server" ]; then

#如果不存在就重新启动

#./smartcockpit 8553 -c 1 &

./smartcockpit 8553 &

#启动后沉睡10s

sleep 10

fi

#每次循环沉睡10s

sleep 5

done

你可能感兴趣的:(Linux下启动进程脚本)