System Grab Bag

View all TLDR pages from common (or from all pages)

jps

Show JVM process status of current user. More information: https://docs.oracle.com/en/java/javase/20/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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.