From 1ad1487937d52be8182f36e4340d3c0adae4d793 Mon Sep 17 00:00:00 2001 From: Max Xu Date: Mon, 29 Jan 2018 15:30:39 +0800 Subject: [PATCH] jps.md: add page (#1946) --- pages/common/jps.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/common/jps.md diff --git a/pages/common/jps.md b/pages/common/jps.md new file mode 100644 index 000000000..82a91c29c --- /dev/null +++ b/pages/common/jps.md @@ -0,0 +1,23 @@ +# jps + +> Show JVM Process Status of current user. + +- 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`