Examples

 # json 을 파싱해 보여준다
cat test.json | jq

 # 모든 키 값의 패스를 `.`으로 조인해 보여준다
cat test.json | jq -c 'path(..)|[.[]|tostring]|join(".")'