%(Brace Quote)

Initiates or terminates a string (variables expanded)

Description

Brace quote is used to initiate and terminate strict strings where variables can be expanded.

While brace quotes are untraditional compared to your typical string quotations in POSIX shells, brace quotes have one advantage in that the open and close grapheme differ (ie ( is a different character to )). This brings benefits when nesting quotes as it saves the developer from having to carefully escape the nested quotation marks just the right number of times.

Commands cannot be quoted using brace quotes because %( is recognized as its own function.

Examples

As a parameter

name = %(Bob)

As a function

» %(hello world)
hello world

Nested quotes

» murex -c %(out %(Hello "${murex -c %(out %(Bob))}"))
Hello "Bob"

In this example we are calling Murex to execute code as a command line parameter (the -c flag). That code outputs Hello "..." but inside the double quotes is a name that is generated from a sub-shell. That sub-shell itself runs another murex instance which also executes another command line parameter, this time outputting the name Bob.

The example is contrived but it does demonstrate how you can heavily nest quotes and even mix and match that with other quotation marks if desired.

This is something that is extremely difficult to write in traditional shells because it would require lots of escaping, and even escaping the escape characters (and so on) the further deep you get in your nest.

Detail

Multi-Line Quotes

Quotes can also work over multiple lines

» out %(foo
» bar)
foo
bar

Legacy Support

Version 3.x of Murex introduced support for the % token, before that brace quotes worked without it. However to retain backwards compatibility, the older syntax is still supported…albeit officially classed as “deprecated” and may be removed from a future release.

Below is a little detail about how the legacy syntax worked:

Deprecated Syntax

The open brace character is only recognized as a brace quote token if it is the start of a parameter.

» set example=(World!)
» out (Hello $example)
Hello (World!)

See Also


This document was generated from gen/parser/quotes_doc.yaml.

This 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 Wed Sep 18 21:18:57 UTC 2024 against commit c037883c03788357164e9846c84d9f777251495d9452a8e.

Current version is 6.3.4225 (develop) which has been verified against tests cases.