Shell實現判斷程序是否存在並重新啟動指令碼分享

2022-09-26 16:54:13 字數 1142 閱讀 7579

簡潔版:

#! /bin/bash

# author caoxin

# time 2012-10-10

# program : 判斷進行是否存在,並重新啟動

function check()

check beh**iors.py

詳細版:

#!/bin/bash

##呼叫關閉jboss程序指令碼

stopmethodserver.sh

#列印出當前的jboss程序:grep jboss查詢的jboss程序,grep -v "grep" 去掉grep程序

jmsthread=`ps -ef | grep gdms | grep jboss | grep -v "grep"`

echo $jmsthread

#查詢jboss程序個數:wc -l 返回行數

co程式設計客棧unt=`ps -ef | grep gdms | grep jboss | grep -v "grep" | wc -l`

echo $count

sec=7

#開始乙個迴圈,以判斷程序是否關閉

for程式設計客棧 var in 1 2

do if [ $程式設計客棧count -gt 0 ]; then

#若程序還未關閉,則指令碼sleep幾秒

echo sleep $sec second the $var time, the jms thread is still alive

sleep $sec

else

#若程序已經關閉,則跳出迴圈

echo "break"

break

fidone

#if [ $count -eq 0 ]; then

# echo "nohup startmethodserver.sh &"

# nohup startmethodserver.sh &

#else

# echo "it's better to check the thread!!!"

#fi#呼叫啟動指令碼

nohup startmethodserver.sh &

本文標題: shell實現判斷程序是否存在並重新啟動指令碼分享

本文位址: /os/linux/114293.html

shell 判斷程序檔案是否存在

判斷增量指令碼程序是否還在 ps ef grep sh new sync data.sh grep v grep grep v vim dev null if ne 0 then mkdir p proccesslog dev null echo error new sync data.sh 指令碼...

shell判斷檔案是否存在

1.shell判斷檔案,目錄是否存在或者具有許可權 6.7.這裡的 x 引數判斷 mypath是否存在並且是否具有可執行許可權 8.if x mypath then 9.mkdir mypath 10.fi 11.12.這裡的 d 引數判斷 mypath是否存在 13.if d mypath the...

shell判斷檔案是否存在

shell判斷檔案,目錄是否存在或者具有許可權 這裡的 x 引數判斷 mypath是否存在並且是否具有可執行許可權 if x mypath then mkdir mypath fi 這裡的 d 引數判斷 mypath是否存在 if d mypath then mkdir mypath fi 這裡的 ...