Skip to content

Instantly share code, notes, and snippets.

@benwei
Created September 12, 2018 06:10
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/8ad036fe5df08ef92b0d13dc9a80d464 to your computer and use it in GitHub Desktop.
Save benwei/8ad036fe5df08ef92b0d13dc9a80d464 to your computer and use it in GitHub Desktop.
JSON get specific field of json data by jq command
$ echo '{"ip":"8.8.8.8","a":"11"}' | jq -r '. | {"ip"} | .[]'
8.8.8.8
echo '{"ip":"8.8.8.8","a":"11"}' | jq -r '. | {"ip"} | .[]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment