[shell] 실시간데몬수 체크 및 데몬체크
### 실시간 데몬수 체크
while [ x ]
do
ps -ef | grep qmail | wc -l
sleep 2
done
### 실시간 데몬 체크
watch -n 2 ‘ps ax | grep httpd’
### 실시간 데몬수 체크
while [ x ]
do
ps -ef | grep qmail | wc -l
sleep 2
done
### 실시간 데몬 체크
watch -n 2 ‘ps ax | grep httpd’
2 Responses
1memorandum
1traveler