Skip to content

Instantly share code, notes, and snippets.

@benwei
Created September 5, 2018 10:57
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 benwei/be767414b02975520380f9ea3913d921 to your computer and use it in GitHub Desktop.
Save benwei/be767414b02975520380f9ea3913d921 to your computer and use it in GitHub Desktop.
test json with jq command
# jq tool: https://github.com/stedolan/jq
$ echo '[{"a":"2"}]' | jq '.[]'
{
"a": "2"
}
$ echo '[{"a":"2"}]' | jq '.[] | .["a"]'
"2"
# view with online tool jqplay
## https://jqplay.org/s/OrtlyrkIyg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment