stop()
{
sh stop.sh
ret_code=$?
<1>echo ret_code is $ret_code
}
once=true
while $once
do
stop & PID=$!
<2>echo ret_code is $ret_code
sleep 2m
<3>echo ret_code is $ret_code
if [ $ret_code == 0 ]
then
break
else
kill $PID
fi
done
<1> 处的 ret_code 为 0
<2> 处的 ret_code 不打印
<3> 处的 ret_code 为空白
有人能说出为什么在 sleep 命令期间和之后更改 ret_code 值吗?
编辑:
我尝试了另一种方法。有效 -
#! /bin/sh
once=true
while $once
do
sh stop.sh & PID=$!
sleep 2m
kill $PID
if [ $? != 0 ]
then
echo stop has completed successfully within the time limit
echo starting ...
sh start.sh
break
fi
done