summaryrefslogtreecommitdiff
path: root/Examples of proper JQ usage.md
blob: b63ee4e07db6da75b096c8fa7d53da27a53d768e (plain)
1
2
3
4
5
6
7
8
9
10
11
---
tags:
  - linux
  - jq
  - howto
---
Double escapes are important!

```
jq -r '.fixed_ips[] | select(.ip_address | test("\\.")) | .ip_address'
```