Get the PID for a process started by Eclipse Get the PID for a process started by Eclipse unix unix

Get the PID for a process started by Eclipse


if you have java/bin in your path then you can use java ps tool: jps -l

Output:17623 com.intellij.idea.Main29003 sun.tools.jps.Jps

The first column is process id.


Try ps aux | grep java, using 'java' as filter should show it.