当前位置: 技术问答>linux和unix
linux编写一个脚本判断程序是否在运行,如果没运行就重启这个软件。
来源: 互联网 发布时间:2017-02-21
本文导语: RT 先谢过大家了。 | processExist=`ps aux|grep processName|grep -v "grep" ` if [ -z $processExist ];then exec processName else echo "process is running" fi | 正解 | 版主所言甚...
RT 先谢过大家了。
|
processExist=`ps aux|grep processName|grep -v "grep" `
if [ -z $processExist ];then
exec processName
else
echo "process is running"
fi
if [ -z $processExist ];then
exec processName
else
echo "process is running"
fi
|
正解
|
版主所言甚对