blob: 83373c2698a53308aa30c9682aa220ae9e5d3783 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
tags:
- jq
---
To access a specific index we can just access it by index nr
```
Command jq '.[0]'
Input [{"name":"JSON", "good":true}, {"name":"XML", "good":false}]|
Output {"name":"JSON", "good":true}|
```
|