1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

add documentation

This commit is contained in:
Kelly Brazil
2019-10-30 13:21:05 -07:00
parent b10fb77d71
commit 1eff69c187
2 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,7 @@
jc changelog
2019xxxx v1.1.1
- Add arp parser
- Add dig parser
- Add nslookup parser
- Add unit tests

View File

@ -6,7 +6,22 @@ Usage:
Example:
$ arp | jc --arp -p
[
{
"address": "gateway",
"hwtype": "ether",
"hwaddress": "00:50:56:f7:4a:fc",
"flags_mask": "C",
"iface": "ens33"
},
{
"address": "192.168.71.254",
"hwtype": "ether",
"hwaddress": "00:50:56:fe:7a:b4",
"flags_mask": "C",
"iface": "ens33"
}
]
"""