उदाहरण एक java
प्रक्रिया के बारे में है, यहां एक उपकरण है जो कुछ अतिरिक्त प्रक्रिया विवरण दिखा सकता है jps
:। बस कोशिश करो, आपके पास शायद यह है - इसका हिस्सा हैJDK
यह एक मूल ps
आदेश के समान है - लेकिन कुछ जावा-विशेषकों को समझता है। मुख्य उपयोग रनिंग जावा प्रक्रियाओं की पहचान करने के लिए किया जाता है, जो तब अन्य जावा विश्लेषण उपकरणों के साथ निरीक्षण किया जाता है , जैसे jstack
।
$ jps -ml
31302 com.intellij.rt.execution.application.AppMain com.example.Foo some.properties
26590 com.intellij.idea.Main nosplash
31597 sun.tools.jps.Jps -ml
विकल्पों के बारे में मैन पेज से एक उद्धरण:
jps - Java Virtual Machine Process Status Tool
jps [ options ] [ hostid ]
[...]
-q Suppress the output of the class name, JAR file name, and argu‐
ments passed to the main method, producing only a list of local
VM identifiers.
-m Output the arguments passed to the main method. The output may be
null for embedded JVMs.
-l Output the full package name for the application's main class or
the full path name to the application's JAR file.
-v Output the arguments passed to the JVM.
-V Output the arguments passed to the JVM through the flags file
(the .hotspotrc file or the file specified by the
-XX:Flags=<filename> argument).
-Joption
Pass option to the java launcher called by jps. For example,
-J-Xms48m sets the startup memory to 48 megabytes. It is a common
convention for -J to pass options to the underlying VM executing
applications written in Java.
[...]