vim restart.shlinux
#!/bin/bashshell
VDS=ps -ef |grep -w vds|grep -v grep|wc -l
vim
if [ $VDS -eq 0 ];then
cd /usr/local/program;./linux-start.sh restart
else
echo "It's ok,don't restart!"
fibash
注:若是在shell窗口直接運行上面的變量賦值不加 -w沒有問題,但在腳本里,用 sh -x restart.sh 裏來看並不一致,解決方法就是加了 -w 參數,精確取值後Okide