Quote characters receive special handling in configuration commands.
The quote characters " and ' are removed from commands:
Agent> cmd="subagent load process"
Agent> echo $cmd
subagent load process
To embed quote characters in a string, enclose them in the other type of quote character:
Agent> string="This 'quoted' string"
Agent> echo "$string"
This 'quoted' string
A command may extend over multiple lines if it contains an unterminated quote:
Agent> event description="this is
> a multi-line command"
Agent> event create
Multiple space characters are only retained when enclosed in quotes.