mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Add descriptions for put and filter verbs (#1529)
* Add more info in online help about what put/filter do * `make dev` artifacts
This commit is contained in:
parent
f01bb92da7
commit
83c44e6d74
8 changed files with 60 additions and 5 deletions
|
|
@ -783,6 +783,7 @@
|
|||
csv "," N/A "\n"
|
||||
csvlite "," N/A "\n"
|
||||
dkvp "," "=" "\n"
|
||||
gen "," N/A "\n"
|
||||
json N/A N/A N/A
|
||||
markdown " " N/A "\n"
|
||||
nidx " " N/A "\n"
|
||||
|
|
@ -1051,6 +1052,10 @@
|
|||
|
||||
1mfilter0m
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to progamatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
-f {file name} File containing a DSL expression (see examples below). If the filename
|
||||
is a directory, all *.mlr files in that directory are loaded.
|
||||
|
|
@ -1504,6 +1509,9 @@
|
|||
|
||||
1mput0m
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to progamatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
-f {file name} File containing a DSL expression (see examples below). If the filename
|
||||
is a directory, all *.mlr files in that directory are loaded.
|
||||
|
|
@ -3683,4 +3691,4 @@
|
|||
MIME Type for Comma-Separated Values (CSV) Files, the Miller docsite
|
||||
https://miller.readthedocs.io
|
||||
|
||||
2024-02-18 4mMILLER24m(1)
|
||||
2024-03-16 4mMILLER24m(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-02-18
|
||||
.\" Date: 2024-03-16
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "MILLER" "1" "2024-02-18" "\ \&" "\ \&"
|
||||
.TH "MILLER" "1" "2024-03-16" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Portability definitions
|
||||
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
@ -936,6 +936,7 @@ Notes about all other separators:
|
|||
csv "," N/A "\en"
|
||||
csvlite "," N/A "\en"
|
||||
dkvp "," "=" "\en"
|
||||
gen "," N/A "\en"
|
||||
json N/A N/A N/A
|
||||
markdown " " N/A "\en"
|
||||
nidx " " N/A "\en"
|
||||
|
|
@ -1314,6 +1315,10 @@ Options:
|
|||
.\}
|
||||
.nf
|
||||
Usage: mlr filter [options] {DSL expression}
|
||||
Lets you use a domain-specific language to progamatically filter which
|
||||
stream records will be output.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
-f {file name} File containing a DSL expression (see examples below). If the filename
|
||||
is a directory, all *.mlr files in that directory are loaded.
|
||||
|
|
@ -1899,6 +1904,9 @@ Options:
|
|||
.\}
|
||||
.nf
|
||||
Usage: mlr put [options] {DSL expression}
|
||||
Lets you use a domain-specific language to progamatically alter stream records.
|
||||
See also: https://miller.readthedocs.io/en/latest/reference-verbs
|
||||
|
||||
Options:
|
||||
-f {file name} File containing a DSL expression (see examples below). If the filename
|
||||
is a directory, all *.mlr files in that directory are loaded.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue