Skip to content

kerstop/json-tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-tool

A command line tool to work with json files, using zero copy wherever possible.

Format an object

> echo '{"hello":"world"}' | json-tool
{
    "hello": "world"
}

Retrieve a key

> echo '{"hello":"world"}' | json-tool get hello
"world"

Set a key

> echo '{"hello":"world"}' | json-tool set hello '"jason"'
{
    "hello": "jason"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages