Linux jq command

Create file: nano test

{"hello": 4}
{"hello": 5}
{"hello": 6}
{"hello": 7}
{"hello": 8}
cat test | jq 'select(.hello > 5)'
Back