linux/windows 下kill某个pid的进程

【linux环境】

方法1:截取进程pid,再kill

ps -ef | grep java.endorsed.dirs | grep -v grep | cut -c10-15 | xargs kill -9

 方法2:

1)找到linux下的进程pids

ps -ef  | grep eSight | grep -v grep | awk '{print $2}'

2)循环pids,kill -9 pid

 

【windows】

kill 命令行参数中带tomcat字符串的 java.exe 进程

方法1:

wmic process where (Name="java.exe" AND CommandLine like "%%tomcat%%") call terminate >nul 2>nul

 

方法2:

C:\Users\j00113584>wmic process where name="calc.exe" get Processid ProcessId 6848

C:\Users\j00113584>taskkill /F /PID 6848 成功: 已终止 PID 为 6848 的进程。

 

posted on 2016-03-24 15:08  imsoft  阅读(2339)  评论(0编辑  收藏  举报

导航