Skip to content

Instantly share code, notes, and snippets.

@dreadjr
Forked from joar/jq-insert-var.sh
Created January 4, 2019 22:45
Show Gist options
  • Save dreadjr/240d7b4d9d209edfd3b379fc86fd017e to your computer and use it in GitHub Desktop.
Save dreadjr/240d7b4d9d209edfd3b379fc86fd017e 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