Linux。 Shell编程。 为hello.sh写一个守护进程watchDog.sh

2024-11-26 08:44:03
推荐回答(1个)
回答1:

watchDog.sh实例,这个只是个思路,具体你得自己测试
#!/bin/sh

hello=`ps -ef| grep hello.sh|grep -v grep |awk '{print $2}'`

while true;
do
if [ ! $hello ]; then
./hello.sh
fi
done