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