mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-13 01:20:24 +02:00
doc update
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
20230108 v1.22.5
|
20230111 v1.22.5
|
||||||
- Add TOML file parser
|
- Add TOML file parser
|
||||||
- Add INI with duplicate key support file parser
|
- Add INI with duplicate key support file parser
|
||||||
- Add AIX support for the `arp` command parser
|
- Add AIX support for the `arp` command parser
|
||||||
|
@ -10,6 +10,8 @@ Parses standard INI files.
|
|||||||
- Delimiter can be `=` or `:`. Missing values are supported.
|
- Delimiter can be `=` or `:`. Missing values are supported.
|
||||||
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
||||||
- If duplicate keys are found, only the last value will be used.
|
- If duplicate keys are found, only the last value will be used.
|
||||||
|
- If any section names have the same name as a top-level key, the top-level
|
||||||
|
key will be overwritten by the section data.
|
||||||
|
|
||||||
> Note: Values starting and ending with double or single quotation marks
|
> Note: Values starting and ending with double or single quotation marks
|
||||||
> will have the marks removed. If you would like to keep the quotation
|
> will have the marks removed. If you would like to keep the quotation
|
||||||
|
@ -8,11 +8,12 @@ jc - JSON Convert INI with duplicate key file parser
|
|||||||
Parses standard INI files and preserves duplicate values. All values are
|
Parses standard INI files and preserves duplicate values. All values are
|
||||||
contained in lists/arrays.
|
contained in lists/arrays.
|
||||||
|
|
||||||
If multi-line values are used, each line will be a separate item in the
|
|
||||||
value list. Blank lines in multi-line values are not supported.
|
|
||||||
|
|
||||||
- Delimiter can be `=` or `:`. Missing values are supported.
|
- Delimiter can be `=` or `:`. Missing values are supported.
|
||||||
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
||||||
|
- If any section names have the same name as a top-level key, the top-level
|
||||||
|
key will be overwritten by the section data.
|
||||||
|
- If multi-line values are used, each line will be a separate item in the
|
||||||
|
value list. Blank lines in multi-line values are not supported.
|
||||||
|
|
||||||
> Note: Values starting and ending with double or single quotation marks
|
> Note: Values starting and ending with double or single quotation marks
|
||||||
> will have the marks removed. If you would like to keep the quotation
|
> will have the marks removed. If you would like to keep the quotation
|
||||||
|
@ -5,6 +5,8 @@ Parses standard INI files.
|
|||||||
- Delimiter can be `=` or `:`. Missing values are supported.
|
- Delimiter can be `=` or `:`. Missing values are supported.
|
||||||
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
||||||
- If duplicate keys are found, only the last value will be used.
|
- If duplicate keys are found, only the last value will be used.
|
||||||
|
- If any section names have the same name as a top-level key, the top-level
|
||||||
|
key will be overwritten by the section data.
|
||||||
|
|
||||||
> Note: Values starting and ending with double or single quotation marks
|
> Note: Values starting and ending with double or single quotation marks
|
||||||
> will have the marks removed. If you would like to keep the quotation
|
> will have the marks removed. If you would like to keep the quotation
|
||||||
|
@ -3,11 +3,12 @@
|
|||||||
Parses standard INI files and preserves duplicate values. All values are
|
Parses standard INI files and preserves duplicate values. All values are
|
||||||
contained in lists/arrays.
|
contained in lists/arrays.
|
||||||
|
|
||||||
If multi-line values are used, each line will be a separate item in the
|
|
||||||
value list. Blank lines in multi-line values are not supported.
|
|
||||||
|
|
||||||
- Delimiter can be `=` or `:`. Missing values are supported.
|
- Delimiter can be `=` or `:`. Missing values are supported.
|
||||||
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
- Comment prefix can be `#` or `;`. Comments must be on their own line.
|
||||||
|
- If any section names have the same name as a top-level key, the top-level
|
||||||
|
key will be overwritten by the section data.
|
||||||
|
- If multi-line values are used, each line will be a separate item in the
|
||||||
|
value list. Blank lines in multi-line values are not supported.
|
||||||
|
|
||||||
> Note: Values starting and ending with double or single quotation marks
|
> Note: Values starting and ending with double or single quotation marks
|
||||||
> will have the marks removed. If you would like to keep the quotation
|
> will have the marks removed. If you would like to keep the quotation
|
||||||
|
2
man/jc.1
2
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2023-01-10 1.22.5 "JSON Convert"
|
.TH jc 1 2023-01-11 1.22.5 "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