-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
Description
Would it be possible to create a version of shyaml/shjson that manipulated key-value pairs? E.g.:
$ echo '{"a": 1, "b": 2}' | shjson put-value c 3
{
"a": 1,
"b": 2,
"c": 3
}or
$ echo '{"a": 1, "b": 2}' | shjson put-value b 7
{
"a": 1,
"b": 7
}?
davidjb, ssbarnea, er1z, JamesMarino, wilmardo and 2 more