美丽宝贝

文章
7
资源
0
加入时间
2年10月21天

shell脚本自动拉起启动程序

一、我们先看看编写的shell脚本的内容,该shell的作用主要是实现监控某个程序崩溃之后就自动重启该进程。  #!/bin/bash   whiletrue  do   procnum=`ps-ef|grep"test"|grep-vgrep|wc-l`   if[$procnum-eq0];then...