mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-13 01:20:24 +02:00
doc update
This commit is contained in:
@ -11,11 +11,75 @@ Compatibility:
|
|||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
$ cat /etc/shadow | jc --shadow -p
|
$ sudo cat /etc/shadow | jc --shadow -p
|
||||||
|
[
|
||||||
|
{
|
||||||
$ cat /etc/shadow | jc --shadow -p -r
|
"username": "root",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "daemon",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "bin",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
...
|
||||||
|
]
|
||||||
|
|
||||||
|
$ sudo cat /etc/shadow | jc --shadow -p -r
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"username": "root",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "daemon",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "bin",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
...
|
||||||
|
]
|
||||||
|
|
||||||
## info
|
## info
|
||||||
```python
|
```python
|
||||||
|
@ -10,11 +10,75 @@ Compatibility:
|
|||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
$ cat /etc/shadow | jc --shadow -p
|
$ sudo cat /etc/shadow | jc --shadow -p
|
||||||
|
[
|
||||||
|
{
|
||||||
$ cat /etc/shadow | jc --shadow -p -r
|
"username": "root",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "daemon",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "bin",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": 18113,
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 99999,
|
||||||
|
"warn": 7,
|
||||||
|
"inactive": null,
|
||||||
|
"expire": null
|
||||||
|
},
|
||||||
|
...
|
||||||
|
]
|
||||||
|
|
||||||
|
$ sudo cat /etc/shadow | jc --shadow -p -r
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"username": "root",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "daemon",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"username": "bin",
|
||||||
|
"password": "*",
|
||||||
|
"last_changed": "18113",
|
||||||
|
"minimum": "0",
|
||||||
|
"maximum": "99999",
|
||||||
|
"warn": "7",
|
||||||
|
"inactive": "",
|
||||||
|
"expire": ""
|
||||||
|
},
|
||||||
|
...
|
||||||
|
]
|
||||||
"""
|
"""
|
||||||
import jc.utils
|
import jc.utils
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user