Skip to content

Instantly share code, notes, and snippets.

@becauseofAI
Forked from sloanlance/jq_jsonl_conversion.md
Created December 13, 2023 09:55
Show Gist options
  • Select an option

  • Save becauseofAI/38dc5b9b2b25a758f39194a0a57f7dc8 to your computer and use it in GitHub Desktop.

Select an option

Save becauseofAI/38dc5b9b2b25a758f39194a0a57f7dc8 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