vim restart.sh
#!/bin/bash
VDS=ps -ef |grep -w vds|grep -v grep|wc -l
if [ $VDS -eq 0 ];then
cd /usr/local/program;./linux-start.sh restart
else
echo "It‘s ok,don‘t restart!"
fi
注:如果在shell窗口直接运行上面的变量赋值不加 -w没有问题,但在脚本里,用 sh -x restart.sh 里来看并不一致,解决方法就是加了 -w 参数,精确取值后Ok
原文地址:http://blog.51cto.com/devin223/2321327
时间: 2024-10-20 20:03:13