Skip to content

Instantly share code, notes, and snippets.

@todgru
Created September 6, 2023 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todgru/b690ac967fba689d6d8f43dff72e28dd to your computer and use it in GitHub Desktop.
Save todgru/b690ac967fba689d6d8f43dff72e28dd to your computer and use it in GitHub Desktop.
jq cheat sheet cli shell json parsing

jq

$ echo '{"foo": "bar", "biz": "baz"}' | jq -r '.[]'
bar
baz
$ echo '{"foo": "bar", "biz": "baz"}' | jq -r 'keys'
[
  "biz",
  "foo"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment