Datatypes for parsing the Miller command line, and the flags table.
pkg/climain
is 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 ofput
thenfilter
, and a JSON record-writer.pkg/cli
contains datatypes and the flags table for the CLI-parser, which was split out to avoid a Go package-import cycle.