Arguments
The arg element is used to specify a command-line argument to pass to an executable command. Normally, arguments may be passed using the args attribute of executable element. However, the args attribute does not allow arguments containing spaces to be passed, thus the arg element is sometimes necessary.
Attributes
None.
Child Elements
The arg element takes the argument value as text content. Note that all whitespace is significant, even space between the tag and content.
Examples
Pass an argument with an embedded space to a build script:
<executable name="build" exe="bash" args="scripts/build-it.sh">
<arg>argument containing spaces</arg>
</executable>