mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Fix typo in online help for --no-jlistwrap (#1541)
* Add --no-auto-unsparsify flag * Fix typo in online help for `--no-jlistwrap` * Artifacts from `make dev`
This commit is contained in:
parent
03b8cce048
commit
e714738a7d
16 changed files with 143 additions and 71 deletions
|
|
@ -1,4 +1,6 @@
|
|||
4mMILLER24m(1) 4mMILLER24m(1)
|
||||
MILLER(1) MILLER(1)
|
||||
|
||||
|
||||
|
||||
1mNAME0m
|
||||
Miller -- like awk, sed, cut, join, and sort for name-indexed data such
|
||||
|
|
@ -317,6 +319,10 @@
|
|||
recreate missing headers.
|
||||
--lazy-quotes Accepts quotes appearing in unquoted fields, and
|
||||
non-doubled quotes appearing in quoted fields.
|
||||
--no-auto-unsparsify For CSV/TSV output: if the record keys change from
|
||||
one row to another, emit a blank line and a new
|
||||
header line. This is non-compliant with RFC 4180 but
|
||||
it helpful for heterogeneous data.
|
||||
--no-implicit-csv-header or --no-implicit-tsv-header
|
||||
Opposite of `--implicit-csv-header`. This is the
|
||||
default anyway -- the main use is for the flags to
|
||||
|
|
@ -447,8 +453,8 @@
|
|||
--jvstack Put one key-value pair per line for JSON output
|
||||
(multi-line output). This is the default for JSON
|
||||
output format.
|
||||
--no-jlistwrap Wrap JSON output in outermost `[ ]`. This is the
|
||||
default for JSON Lines output format.
|
||||
--no-jlistwrap Do not wrap JSON output in outermost `[ ]`. This is
|
||||
the default for JSON Lines output format.
|
||||
--no-jvstack Put objects/arrays all on one line for JSON output.
|
||||
This is the default for JSON Lines output format.
|
||||
|
||||
|
|
@ -788,7 +794,7 @@
|
|||
markdown " " N/A "\n"
|
||||
nidx " " N/A "\n"
|
||||
pprint " " N/A "\n"
|
||||
tsv " " N/A "\n"
|
||||
tsv " " N/A "\n"
|
||||
xtab "\n" " " "\n\n"
|
||||
|
||||
--fs {string} Specify FS for input and output.
|
||||
|
|
@ -3691,4 +3697,6 @@
|
|||
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
|
||||
https://miller.readthedocs.io
|
||||
|
||||
2024-03-16 4mMILLER24m(1)
|
||||
|
||||
|
||||
2024-04-11 MILLER(1)
|
||||
|
|
|
|||
12
man/mlr.1
12
man/mlr.1
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: mlr
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: ./mkman.rb
|
||||
.\" Date: 2024-03-16
|
||||
.\" Date: 2024-04-11
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2024-03-16" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2024-04-11" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -390,6 +390,10 @@ These are flags which are applicable to CSV format.
|
|||
recreate missing headers.
|
||||
--lazy-quotes Accepts quotes appearing in unquoted fields, and
|
||||
non-doubled quotes appearing in quoted fields.
|
||||
--no-auto-unsparsify For CSV/TSV output: if the record keys change from
|
||||
one row to another, emit a blank line and a new
|
||||
header line. This is non-compliant with RFC 4180 but
|
||||
it helpful for heterogeneous data.
|
||||
--no-implicit-csv-header or --no-implicit-tsv-header
|
||||
Opposite of `--implicit-csv-header`. This is the
|
||||
default anyway -- the main use is for the flags to
|
||||
|
|
@ -552,8 +556,8 @@ These are flags which are applicable to JSON output format.
|
|||
--jvstack Put one key-value pair per line for JSON output
|
||||
(multi-line output). This is the default for JSON
|
||||
output format.
|
||||
--no-jlistwrap Wrap JSON output in outermost `[ ]`. This is the
|
||||
default for JSON Lines output format.
|
||||
--no-jlistwrap Do not wrap JSON output in outermost `[ ]`. This is
|
||||
the default for JSON Lines output format.
|
||||
--no-jvstack Put objects/arrays all on one line for JSON output.
|
||||
This is the default for JSON Lines output format.
|
||||
.fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue