码迷,mamicode.com
首页 > 其他好文 > 详细

check procee id exists

时间:2017-11-22 10:59:07      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:store   span   gre   turn   blog   process   null   roc   exists   

check exists, return 0

$ pgrep httpd
46775
$ kill -0 46775
$ echo $?
0

check non-exists, return 1

$ kill -0 999999899
bash: kill: (999999899) - No such process
$ echo $?
1

kill process id stored in .pid file

#!/bin/sh
pid_file=/var/run/process.pid

kill -0 $(cat $pid_file) 2>/dev/null

if [ $? -eq 0 ]; then
  kill $(cat $pid_file)
fi

check procee id exists

标签:store   span   gre   turn   blog   process   null   roc   exists   

原文地址:http://www.cnblogs.com/brookin/p/7878101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!