A command line tool to work with json files, using zero copy wherever possible.
> echo '{"hello":"world"}' | json-tool
{
"hello": "world"
}
> echo '{"hello":"world"}' | json-tool get hello
"world"
> echo '{"hello":"world"}' | json-tool set hello '"jason"'
{
"hello": "jason"
}