Search notes:

jq: the . filter

The . filter is the identity, i. e. it resolves to the value of the input:
$ echo '[1,1,2,3,5,8,13]' | jq '.[] | .+.'
2
2
4
6
10
16
26

Index