echo

Description

Echo text to the console.

Properties

NameDescriptionRequired
name A name, can be any text. No.
text The text to display. No, text can be nested instead.

Example

 <echo name="Greeting Job" text="Hello World"/>
 

 <sequential>
   <copy id="copy" name="Copy from a file to a buffer"
            from="stuff.txt">
     <output>
       <buffer/>
     </output>
   </copy>
   <echo name="What's in the file?" text="${copy.output}"/>
 </sequential>
 


(c) Rob Gordon 2005