mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
337 B
Markdown
22 lines
337 B
Markdown
5 years ago
|
|
||
|
`sysprop java.version`{{execute T2}}
|
||
|
|
||
|
```bash
|
||
|
$ sysprop java.version
|
||
|
java.version=1.8.0_51
|
||
|
```
|
||
|
|
||
|
## 修改单个属性
|
||
|
|
||
|
`sysprop user.country`{{execute T2}}
|
||
|
|
||
|
`sysprop user.country CN`{{execute T2}}
|
||
|
|
||
|
```bash
|
||
|
$ sysprop user.country
|
||
|
user.country=US
|
||
|
$ sysprop user.country CN
|
||
|
Successfully changed the system property.
|
||
|
user.country=CN
|
||
|
```
|