alter
Change a value within a structured data-type and pass that change along the pipeline without altering the original source input
alter
a value within a structured data-type.
The path separater is defined by the first character in the path. For example /path/to/key
, ,path,to,key
, |path|to|key
and #path#to#key
are all valid however you should remember to quote or escape any special characters (tokens) used by the shell (such as pipe, |
, and hash, #
).
The value must always be supplied as JSON however
<stdin> -> alter: [ -m | --merge | -s | --sum ] /path value -> <stdout>
» config: -> [ shell ] -> [ prompt ] -> alter: /Value moo
{
"Data-Type": "block",
"Default": "{ out 'murex » ' }",
"Description": "Interactive shell prompt.",
"Value": "moo"
}
alter
also accepts JSON as a parameter for adding structured data:
config: -> [ shell ] -> [ prompt ] -> alter: /Example { "Foo": "Bar" }
{
"Data-Type": "block",
"Default": "{ out 'murex » ' }",
"Description": "Interactive shell prompt.",
"Example": {
"Foo": "Bar"
},
"Value": "{ out 'murex » ' }"
}
However it is also data type aware so if they key you’re updating holds a string (for example) then the JSON data a will be stored as a string:
» config: -> [ shell ] -> [ prompt ] -> alter: /Value { "Foo": "Bar" }
{
"Data-Type": "block",
"Default": "{ out 'murex » ' }",
"Description": "Interactive shell prompt.",
"Value": "{ \"Foo\": \"Bar\" }"
}
Numbers will also follow the same transparent conversion treatment:
» tout: json { "one": 1, "two": 2 } -> alter: /two "3"
{
"one": 1,
"two": 3
}
Please note:
alter
is not changing the value held insideconfig
but instead took the STDOUT fromconfig
, altered a value and then passed that new complete structure through it’s STDOUT.If you require modifying a structure inside murex config (such as http headers) then you can use
config alter
. Read the config docs for reference.
Thus far all the examples have be changing existing keys. However you can also alter a structure by appending to an array or a merging two maps together. You do this with the --merge
(or -m
) flag.
» out: a\nb\nc -> alter: --merge / ([ "d", "e", "f" ])
a
b
c
d
e
f
This behaves similarly to --merge
where structures are blended together. However where a map exists with two keys the same and the values are numeric, those values are added together.
» tout json { "a": 1, "b": 2 } -> alter --sum / { "b": 3, "c": 4 }
{
"a": 1,
"b": 5,
"c": 4
}
--merge
Merge data structures rather than overwrite--sum
Sum values in a map, merge items in an array-m
Alias for `–merge-s
Alias for `–sumThe path parameter can take any character as node separators. The separator is assigned via the first character in the path. For example
config -> alter: .shell.prompt.Value moo
config -> alter: >shell>prompt>Value moo
Just make sure you quote or escape any characters used as shell tokens. eg
config -> alter: '#shell#prompt#Value' moo
config -> alter: ' shell prompt Value' moo
The value field must always be supplied as JSON however the STDIN struct can be any data-type supported by murex.
You can check what data-types are available via the runtime
command:
runtime --marshallers
Marshallers are enabled at compile time from the builtins/data-types
directory.
[[
(element): Outputs an element from a nested structure[
(index): Outputs an element from an array, map or tableappend
: Add data to the end of an arraycast
: Alters the data type of the previous function without altering it’s outputconfig
: Query or define murex runtime settingsformat
: Reformat one data-type into another data-typeprepend
: Add data to the start of an arrayruntime
: Returns runtime information on the internal state of murexThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Mon Feb 13 09:18:06 UTC 2023 against commit f339958f33995895c1d997efcdbb8408d2c8d45f8b5f934.
Current version is which has been verified against 13950 tests cases.