Skip to content

Instantly share code, notes, and snippets.

@boydjc
Forked from sloanlance/jq_jsonl_conversion.md
Created August 7, 2023 01:41
Show Gist options
  • Save boydjc/d42288efbd212dff8ba4999a8729a538 to your computer and use it in GitHub Desktop.
Save boydjc/d42288efbd212dff8ba4999a8729a538 to your computer and use it in GitHub Desktop.
jq: JSONL ↔︎ JSON conversion

jq: JSONL ↔︎ JSON conversion

  1. JSONL → JSON

    jq -s '.' input.jsonl > output.json
  2. JSON → JSONL

    jq -c '.[]' input.json > output.jsonl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment