HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

jps — Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/2

Submitted by: @import:tldr-pages··
0
Viewed 0 times
currentcommandjpsshowstatusprocessclijvm

Problem

How to use the jps command: Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jps.html>.

Solution

jps — Show JVM process status of current user. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jps.html>.

List all JVM processes:
jps


List all JVM processes with only PID:
jps -q


Display the arguments passed to the processes:
jps -m


Display the full package name of all processes:
jps -l


Display the arguments passed to the JVM:
jps -v

Code Snippets

List all JVM processes

jps

List all JVM processes with only PID

jps -q

Display the arguments passed to the processes

jps -m

Display the full package name of all processes

jps -l

Display the arguments passed to the JVM

jps -v

Context

tldr-pages: common/jps

Revisions (0)

No revisions yet.