shell 查看某个应用的进程号

查看jenkin的进程id

ps -ef|grep jenkins.war|grep -v "grep"|awk '{print $2}'

执行结果参考:

[root@test-server-2 bin]# ps -ef|grep jenkins.war|grep -v "grep"|awk '{print $2}'
22950

shell脚本接收进程并杀死

#/bin/sh
taskId=`ps -ef|grep jenkins.war|grep -v "grep"|awk '{print $2}'`
echo $taskId

if [ -n "$taskId" ]; then
	for id in $taskId
	do
		kill -9 $id
		echo "killed $id"
	done
fi

 

原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/243927.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论