一個判斷進程是否存在的shell

test.sh 
#!/bin/bash         pid=`ps aux|grep -v grep|grep -v "test.sh"|grep $1|sed -n '1P' | awk '{print $2}'`         if   [ -z $pid ]   ;then                 echo   "there   isn't   this   process!"   else                         echo $pid         fi
相關文章
相關標籤/搜索