#!/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 "$1 isn't exist!"
else
echo $pid
fi
"test.sh" 为当前脚本名
使用方法:
chmod 755 test.sh
./test.sh 进程名
脚本参考51cto一篇文章
阅读(1770) | 评论(0) | 转发(0) |