标签:store span gre turn blog process null roc exists
$ pgrep httpd
46775
$ kill -0 46775
$ echo $?
0
$ kill -0 999999899
bash: kill: (999999899) - No such process
$ echo $?
1
#!/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
标签:store span gre turn blog process null roc exists
原文地址:http://www.cnblogs.com/brookin/p/7878101.html