Skip to content

Instantly share code, notes, and snippets.

@jdvala
Forked from sloanlance/jq_jsonl_conversion.md
Created September 29, 2020 11:14
Show Gist options
  • Save jdvala/f9b5a3d55ecbd5421f193f1eeb1973f0 to your computer and use it in GitHub Desktop.
Save jdvala/f9b5a3d55ecbd5421f193f1eeb1973f0 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