#命令“ps -af”的第一列就是进程id #${pid}是进程的id,然后判断$?是否为0即可,为0表示跟进程存在 ps -ax | awk '{ print $1 }' | grep -e "^${pid}$"