aboutsummaryrefslogtreecommitdiff
path: root/content/snippets/jq-count-json-items.md
blob: 1093bfb9b2cad929d1e2a5a2c531385e49a40024 (plain)
1
2
3
4
5
6
7
8
9
---
title: Count items in JSON file using jq
description: Count items in JSON file using jq
tags: ["jq", "commandline"]
---

```console
jq -s '. | length' sample_data.json
```