mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
* add sysprop command scenario. #847 Signed-off-by: hollowman6 <hollowman186@vip.qq.com> * fix links Signed-off-by: hollowman6 <hollowman186@vip.qq.com> * switch to use arthas-demo Signed-off-by: hollowman6 <hollowman186@vip.qq.com>
28 lines
570 B
Markdown
28 lines
570 B
Markdown
|
|
`sysprop`{{execute T2}} 命令可以查看当前JVM的系统属性(`System Property`)
|
|
|
|
## 使用参考
|
|
|
|
`sysprop -h`{{execute T2}}
|
|
|
|
```
|
|
USAGE:
|
|
sysprop [-h] [property-name] [property-value]
|
|
|
|
SUMMARY:
|
|
Display, and change all the system properties.
|
|
|
|
EXAMPLES:
|
|
sysprop
|
|
sysprop file.encoding
|
|
sysprop production.mode true
|
|
|
|
WIKI:
|
|
https://alibaba.github.io/arthas/sysprop
|
|
|
|
OPTIONS:
|
|
-h, --help this help
|
|
<property-name> property name
|
|
<property-value> property value
|
|
```
|