Skip to content

Instantly share code, notes, and snippets.

@cjbarroso
Forked from joar/jq-insert-var.sh
Created September 2, 2020 20:17
Show Gist options
  • Save cjbarroso/023549e1bb0bba03de64391387fa5c07 to your computer and use it in GitHub Desktop.
Save cjbarroso/023549e1bb0bba03de64391387fa5c07 to your computer and use it in GitHub Desktop.
Add a field to an object with JQ
# Add field
echo '{"hello": "world"}' | jq --arg foo bar '. + {foo: $foo}'
# {
# "hello": "world",
# "foo": "bar"
# }
# Override field value
echo '{"hello": "world"}' | jq --arg foo bar '. + {hello: $foo}'
{
"hello": "bar"
}
# {
# "hello": "bar"
# }
# Concat and add
echo '{"hello": "world"}' | jq --arg foo bar '. + {hello: ("not" + $foo)}'
# {
# "hello": "world",
# "foo": "notbar"
# }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment