rw/recompress: clarify subcommand description

This commit is contained in:
Starbeamrainbowlabs 2023-11-30 16:59:45 +00:00
parent 18195c2d15
commit 4626549352
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -1,7 +1,7 @@
"use strict";
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("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");