mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-27 17:53:57 +00:00
* Tableize flag-parsing for on-line help, doc autogen, etc. * Rename cli,cliutil packages -> climain,cli * stub for new flag-list page * Fix alignment & formatting for webdoc/manpage autogen * per-flag-section info in mlr help * Fix comparison of actual vs expected stderr file in regtest * Replace old flag-parser with new |
||
|---|---|---|
| .. | ||
| flag_types.go | ||
| flatten_unflatten.go | ||
| mlrcli_util.go | ||
| option_parse.go | ||
| option_types.go | ||
| README.md | ||
| verb_utils.go | ||
Datatypes for parsing the Miller command line.
src/climainis the flag-parsing logic for supporting Miller's command-line interface. When you type something likemlr --icsv --ojson put '$sum = $a + $b' then filter '$sum > 1000' myfile.csv, it's the CLI parser which makes it possible for Miller to construct a CSV record-reader, a transformer chain ofputthenfilter, and a JSON record-writer.src/clicontains datatypes for the CLI-parser, which was split out to avoid a Go package-import cycle.