mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
doc note for #1218
This commit is contained in:
parent
38d7de545d
commit
e9846313a5
6 changed files with 21 additions and 12 deletions
|
|
@ -562,7 +562,9 @@ MILLER(1) MILLER(1)
|
|||
--ofmtg {n} Use --ofmtg 6 as shorthand for --ofmt %.6g, etc.
|
||||
--records-per-batch {n} This is an internal parameter for maximum number of
|
||||
records in a batch size. Normally this does not need
|
||||
to be modified.
|
||||
to be modified, except when input is from `tail -f`.
|
||||
See also
|
||||
https://miller.readthedocs.io/en/latest/reference-main-flag-list/.
|
||||
--seed {n} with `n` of the form `12345678` or `0xcafefeed`. For
|
||||
`put`/`filter` `urand`, `urandint`, and `urand32`.
|
||||
--tz {timezone} Specify timezone, overriding `$TZ` environment
|
||||
|
|
@ -3318,5 +3320,5 @@ MILLER(1) MILLER(1)
|
|||
|
||||
|
||||
|
||||
2023-03-04 MILLER(1)
|
||||
2023-03-06 MILLER(1)
|
||||
</pre>
|
||||
|
|
|
|||
|
|
@ -541,7 +541,9 @@ MILLER(1) MILLER(1)
|
|||
--ofmtg {n} Use --ofmtg 6 as shorthand for --ofmt %.6g, etc.
|
||||
--records-per-batch {n} This is an internal parameter for maximum number of
|
||||
records in a batch size. Normally this does not need
|
||||
to be modified.
|
||||
to be modified, except when input is from `tail -f`.
|
||||
See also
|
||||
https://miller.readthedocs.io/en/latest/reference-main-flag-list/.
|
||||
--seed {n} with `n` of the form `12345678` or `0xcafefeed`. For
|
||||
`put`/`filter` `urand`, `urandint`, and `urand32`.
|
||||
--tz {timezone} Specify timezone, overriding `$TZ` environment
|
||||
|
|
@ -3297,4 +3299,4 @@ MILLER(1) MILLER(1)
|
|||
|
||||
|
||||
|
||||
2023-03-04 MILLER(1)
|
||||
2023-03-06 MILLER(1)
|
||||
|
|
|
|||
|
|
@ -279,7 +279,7 @@ These are flags which don't fit into any other category.
|
|||
* `--ofmte {n}`: Use --ofmte 6 as shorthand for --ofmt %.6e, etc.
|
||||
* `--ofmtf {n}`: Use --ofmtf 6 as shorthand for --ofmt %.6f, etc.
|
||||
* `--ofmtg {n}`: Use --ofmtg 6 as shorthand for --ofmt %.6g, etc.
|
||||
* `--records-per-batch {n}`: This is an internal parameter for maximum number of records in a batch size. Normally this does not need to be modified.
|
||||
* `--records-per-batch {n}`: This is an internal parameter for maximum number of records in a batch size. Normally this does not need to be modified, except when input is from `tail -f`. See also https://miller.readthedocs.io/en/latest/reference-main-flag-list/.
|
||||
* `--seed {n}`: with `n` of the form `12345678` or `0xcafefeed`. For `put`/`filter` `urand`, `urandint`, and `urand32`.
|
||||
* `--tz {timezone}`: Specify timezone, overriding `$TZ` environment variable (if any).
|
||||
* `-I`: Process files in-place. For each file name on the command line, output is written to a temp file in the same directory, which is then renamed over the original. Each file is processed in isolation: if the output format is CSV, CSV headers will be present in each output file, statistics are only over each file's own records; and so on.
|
||||
|
|
|
|||
|
|
@ -2870,8 +2870,9 @@ on JSON input records, where duplicate keys always result in the last one's valu
|
|||
{
|
||||
name: "--records-per-batch",
|
||||
arg: "{n}",
|
||||
help: `This is an internal parameter for maximum number of records in a batch size. Normally
|
||||
this does not need to be modified.`,
|
||||
help: "This is an internal parameter for maximum number of records in a batch size. Normally this does not\n" +
|
||||
"need to be modified, except when input is from `tail -f`. See also\n" +
|
||||
"https://miller.readthedocs.io/en/latest/reference-main-flag-list/.",
|
||||
parser: func(args []string, argc int, pargi *int, options *TOptions) {
|
||||
CheckArgCount(args, *pargi, argc, 2)
|
||||
recordsPerBatch, ok := lib.TryIntFromString(args[*pargi+1])
|
||||
|
|
|
|||
|
|
@ -541,7 +541,9 @@ MILLER(1) MILLER(1)
|
|||
--ofmtg {n} Use --ofmtg 6 as shorthand for --ofmt %.6g, etc.
|
||||
--records-per-batch {n} This is an internal parameter for maximum number of
|
||||
records in a batch size. Normally this does not need
|
||||
to be modified.
|
||||
to be modified, except when input is from `tail -f`.
|
||||
See also
|
||||
https://miller.readthedocs.io/en/latest/reference-main-flag-list/.
|
||||
--seed {n} with `n` of the form `12345678` or `0xcafefeed`. For
|
||||
`put`/`filter` `urand`, `urandint`, and `urand32`.
|
||||
--tz {timezone} Specify timezone, overriding `$TZ` environment
|
||||
|
|
@ -3297,4 +3299,4 @@ MILLER(1) MILLER(1)
|
|||
|
||||
|
||||
|
||||
2023-03-04 MILLER(1)
|
||||
2023-03-06 MILLER(1)
|
||||
|
|
|
|||
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: mlr
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: ./mkman.rb
|
||||
.\" Date: 2023-03-04
|
||||
.\" Date: 2023-03-06
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2023-03-04" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2023-03-06" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -660,7 +660,9 @@ These are flags which don't fit into any other category.
|
|||
--ofmtg {n} Use --ofmtg 6 as shorthand for --ofmt %.6g, etc.
|
||||
--records-per-batch {n} This is an internal parameter for maximum number of
|
||||
records in a batch size. Normally this does not need
|
||||
to be modified.
|
||||
to be modified, except when input is from `tail -f`.
|
||||
See also
|
||||
https://miller.readthedocs.io/en/latest/reference-main-flag-list/.
|
||||
--seed {n} with `n` of the form `12345678` or `0xcafefeed`. For
|
||||
`put`/`filter` `urand`, `urandint`, and `urand32`.
|
||||
--tz {timezone} Specify timezone, overriding `$TZ` environment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue