blob: b58a021771bdf127a7aaa7093fe5de0c91cd6e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
title: Convert JSONL to JSON using JQ
description: Convert JSONL to JSON using JQ
tags: ["jq", "commandline"]
---
```console
jq -s '.' input.jsonl > output.json
```
And the other way:
```console
jq -c '.[]' input.json > output.jsonl
```
|