We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ "bar": "hello", "baz": 2, "blort": { "aaa": "hello", "bbb": 2 } }
jshon -d aaa (does not remove aaa)
The text was updated successfully, but these errors were encountered:
Sure it can. Jshon can not read your mind, you have to drill down if you want to modify deeper levels.
jshon -e blort -d aaa -p
Do you have any suggestions for better expressing this in the docs?
Patches for mind-reading will of course be accepted :-)
Sorry, something went wrong.
Damn, I keep hitting that close button, when I mean comment.
I'm thinking that there's some XPath way of referring to nodes to delete. Two alternates exist already – JAQL or JsonPath (http://code.google.com/p/jaql and http://goessner.net/articles/JsonPath/)
These would be ideal :
jshon -d //blort/aaa jshon -d /blort/aaa
Sadly my C skill as remedial :(
No branches or pull requests
{
"bar": "hello",
"baz": 2,
"blort":
{
"aaa": "hello",
"bbb": 2
}
}
The text was updated successfully, but these errors were encountered: