-
Notifications
You must be signed in to change notification settings - Fork 0
Command Batching
Grisgram edited this page Oct 3, 2025
·
12 revisions
Command batching was implemented to allow combining multiple commands into a single expression.
Although this feature is very specific and not often used in practice, it still has valid use cases.
In particular, it provides opportunities for RichJson modules.
member: { "key": "#first#second#third:<params>" }
key: "#first#second#third:key": { ... }
Note
The commands are executed in order, each using the result of the previous command (if available)
function do_something() {
return "Hello World!";
}
{
"text": "#func#invoke:do_something"
}{
"text": "Hello World!"
}Author’s Recommendation: next read Command Piping
Back to Repo ● Wiki Home
Copyright © coldrock.games