mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-13 01:20:24 +02:00
doc update
This commit is contained in:
@ -2,6 +2,9 @@ jc changelog
|
|||||||
|
|
||||||
20221118 v1.22.3
|
20221118 v1.22.3
|
||||||
- Add Common Log Format and Combined Log Format file parser (standard and streaming)
|
- Add Common Log Format and Combined Log Format file parser (standard and streaming)
|
||||||
|
- Enhance `ifconfig` parser with interface lane information on BSD
|
||||||
|
- Enhance `ifconfig` parser with additional IPv6 `scope_id` info for BSD
|
||||||
|
- Fix `ifconfig` parser to capture some IPv6 addresses missed on BSD
|
||||||
- Fix `git-log` and `git-log-s` parsers for failure on empty author name
|
- Fix `git-log` and `git-log-s` parsers for failure on empty author name
|
||||||
- Update `os-prober` parser with split EFI partition fields
|
- Update `os-prober` parser with split EFI partition fields
|
||||||
- Fix several documentation typos
|
- Fix several documentation typos
|
||||||
|
@ -42,6 +42,7 @@ Schema:
|
|||||||
"ipv6_addr": string, # [0]
|
"ipv6_addr": string, # [0]
|
||||||
"ipv6_mask": integer, # [0]
|
"ipv6_mask": integer, # [0]
|
||||||
"ipv6_scope": string, # [0]
|
"ipv6_scope": string, # [0]
|
||||||
|
"ipv6_scope_id": string, # [0]
|
||||||
"ipv6_type": string, # [0]
|
"ipv6_type": string, # [0]
|
||||||
"rx_packets": integer,
|
"rx_packets": integer,
|
||||||
"rx_bytes": integer,
|
"rx_bytes": integer,
|
||||||
@ -87,10 +88,19 @@ Schema:
|
|||||||
"ipv6: [
|
"ipv6: [
|
||||||
{
|
{
|
||||||
"address": string,
|
"address": string,
|
||||||
|
"scope_id": string,
|
||||||
"mask": integer,
|
"mask": integer,
|
||||||
"scope": string,
|
"scope": string,
|
||||||
"type": string
|
"type": string
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"lanes": [
|
||||||
|
{
|
||||||
|
"lane": integer,
|
||||||
|
"rx_power_mw": float,
|
||||||
|
"rx_power_dbm": float,
|
||||||
|
"tx_bias_ma": float
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -147,6 +157,7 @@ Examples:
|
|||||||
"ipv6": [
|
"ipv6": [
|
||||||
{
|
{
|
||||||
"address": "fe80::c1cb:715d:bc3e:b8a0",
|
"address": "fe80::c1cb:715d:bc3e:b8a0",
|
||||||
|
"scope_id": null,
|
||||||
"mask": 64,
|
"mask": 64,
|
||||||
"scope": "0x20",
|
"scope": "0x20",
|
||||||
"type": "link"
|
"type": "link"
|
||||||
@ -195,6 +206,7 @@ Examples:
|
|||||||
"ipv6": [
|
"ipv6": [
|
||||||
{
|
{
|
||||||
"address": "fe80::c1cb:715d:bc3e:b8a0",
|
"address": "fe80::c1cb:715d:bc3e:b8a0",
|
||||||
|
"scope_id": null,
|
||||||
"mask": "64",
|
"mask": "64",
|
||||||
"scope": "0x20",
|
"scope": "0x20",
|
||||||
"type": "link"
|
"type": "link"
|
||||||
@ -228,4 +240,4 @@ Returns:
|
|||||||
### Parser Information
|
### Parser Information
|
||||||
Compatibility: linux, aix, freebsd, darwin
|
Compatibility: linux, aix, freebsd, darwin
|
||||||
|
|
||||||
Version 2.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com)
|
||||||
|
2
man/jc.1
2
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2022-11-22 1.22.3 "JSON Convert"
|
.TH jc 1 2022-12-02 1.22.3 "JSON Convert"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
|
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Reference in New Issue
Block a user