mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-21 17:03:00 +00:00
rw/recompress: clarify subcommand description
This commit is contained in:
parent
18195c2d15
commit
4626549352
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
export default function(cli) {
|
export default function(cli) {
|
||||||
cli.subcommand("recompress", "Recompress a source to a target directory with a given number of records per file.")
|
cli.subcommand("recompress", "Recompress a source .jsonl.gz to a target directory with a given number of records per file.")
|
||||||
.argument("source", "Path to the source directory.", null, "string")
|
.argument("source", "Path to the source directory.", null, "string")
|
||||||
.argument("target", "Path to the target directory.", null, "string")
|
.argument("target", "Path to the target directory.", null, "string")
|
||||||
.argument("count-file", "The number of records to store in each record file. See the documentation for the optimal value of this number (default: 4096).", 64*64, "integer");
|
.argument("count-file", "The number of records to store in each record file. See the documentation for the optimal value of this number (default: 4096).", 64*64, "integer");
|
||||||
|
|
Loading…
Reference in a new issue