Skip to content

Instantly share code, notes, and snippets.

@jamiembrown
Created January 24, 2014 17:19
Show Gist options
  • Save jamiembrown/8601844 to your computer and use it in GitHub Desktop.
Save jamiembrown/8601844 to your computer and use it in GitHub Desktop.
Bash function to get a value from a remote JSON file
function getjson {
curl --silent $1 | python -c 'import sys, json; print json.load(sys.stdin)[sys.argv[1]]' $2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment