mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
* Fix source info for #1665 * run `make dev`
This commit is contained in:
parent
56210b045b
commit
4a2f349289
7 changed files with 12 additions and 12 deletions
|
|
@ -1962,7 +1962,7 @@ This is simply a copy of what you should see on running `man mlr` at a command p
|
|||
Example: mlr stats1 -a min,p10,p50,p90,max -f value -g size,shape
|
||||
Example: mlr stats1 -a count,mode -f size
|
||||
Example: mlr stats1 -a count,mode -f size -g shape
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'
|
||||
This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.
|
||||
|
||||
|
|
@ -3731,5 +3731,5 @@ This is simply a copy of what you should see on running `man mlr` at a command p
|
|||
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
|
||||
https://miller.readthedocs.io
|
||||
|
||||
2024-08-25 4mMILLER24m(1)
|
||||
2024-10-02 4mMILLER24m(1)
|
||||
</pre>
|
||||
|
|
|
|||
|
|
@ -1941,7 +1941,7 @@
|
|||
Example: mlr stats1 -a min,p10,p50,p90,max -f value -g size,shape
|
||||
Example: mlr stats1 -a count,mode -f size
|
||||
Example: mlr stats1 -a count,mode -f size -g shape
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'
|
||||
This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.
|
||||
|
||||
|
|
@ -3710,4 +3710,4 @@
|
|||
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
|
||||
https://miller.readthedocs.io
|
||||
|
||||
2024-08-25 4mMILLER24m(1)
|
||||
2024-10-02 4mMILLER24m(1)
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ func custom_options() *cli.TOptions {
|
|||
func run_custom_processor(
|
||||
fileNames []string,
|
||||
options *cli.TOptions,
|
||||
record_processor func (irac *types.RecordAndContext) (*types.RecordAndContext, error),
|
||||
record_processor func(irac *types.RecordAndContext) (*types.RecordAndContext, error),
|
||||
) error {
|
||||
outputStream := os.Stdout
|
||||
outputIsStdout := true
|
||||
|
|
|
|||
|
|
@ -1941,7 +1941,7 @@
|
|||
Example: mlr stats1 -a min,p10,p50,p90,max -f value -g size,shape
|
||||
Example: mlr stats1 -a count,mode -f size
|
||||
Example: mlr stats1 -a count,mode -f size -g shape
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'
|
||||
This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.
|
||||
|
||||
|
|
@ -3710,4 +3710,4 @@
|
|||
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
|
||||
https://miller.readthedocs.io
|
||||
|
||||
2024-08-25 4mMILLER24m(1)
|
||||
2024-10-02 4mMILLER24m(1)
|
||||
|
|
|
|||
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: mlr
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: ./mkman.rb
|
||||
.\" Date: 2024-08-25
|
||||
.\" Date: 2024-10-02
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2024-08-25" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2024-10-02" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -2444,7 +2444,7 @@ Options:
|
|||
Example: mlr stats1 -a min,p10,p50,p90,max -f value -g size,shape
|
||||
Example: mlr stats1 -a count,mode -f size
|
||||
Example: mlr stats1 -a count,mode -f size -g shape
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'
|
||||
This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ Options:
|
|||
fmt.Fprintln(o,
|
||||
"Example: mlr stats1 -a count,mode -f size -g shape")
|
||||
fmt.Fprintln(o,
|
||||
"Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'")
|
||||
"Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'")
|
||||
fmt.Fprintln(o,
|
||||
` This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.`)
|
||||
|
|
|
|||
|
|
@ -1111,7 +1111,7 @@ Options:
|
|||
Example: mlr stats1 -a min,p10,p50,p90,max -f value -g size,shape
|
||||
Example: mlr stats1 -a count,mode -f size
|
||||
Example: mlr stats1 -a count,mode -f size -g shape
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' -gr '^k.*$'
|
||||
Example: mlr stats1 -a count,mode --fr '^[a-h].*$' --gr '^k.*$'
|
||||
This computes count and mode statistics on all field names beginning
|
||||
with a through h, grouped by all field names starting with k.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue