উদাহরণস্বরূপ একটি সম্পর্কে 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.
[...]