<rcml>
<process id="ExampleProcess" name="example process">
<workdir id="workdir" home="./WORK" />
<!-- Variable mit Wert "hello!" anlegen -->
<update-variable name="myvar" value="hello!" />
<exec id="ExampleExec" workdir="workdir">
<!-- Parameter mit Wert von myvar anlegen -->
<param name="myparam" value="${myvar}" />
<!-- Ausgeben. -->
<commandline processor="velocity">cmd echo $myparam</commandline>
</exec>
</process>
</rcml>