Shell: Find all running java processes
With the following command you can find all currently running java processes:
ps aux | grep java
Of course this works for any arbitrary process.
With the following command you can find all currently running java processes:
ps aux | grep java
Of course this works for any arbitrary process.