You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

echo.html 1.3 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="echo">Echo</a></h2>
  8. <h3>Description</h3>
  9. <p>Echoes a message to System.out or a file.</p>
  10. <h3>Parameters</h3>
  11. <table border="1" cellpadding="2" cellspacing="0">
  12. <tr>
  13. <td valign="top"><b>Attribute</b></td>
  14. <td valign="top"><b>Description</b></td>
  15. <td align="center" valign="top"><b>Required</b></td>
  16. </tr>
  17. <tr>
  18. <td valign="top">message</td>
  19. <td valign="top">the message to echo.</td>
  20. <td valign="top" align="center">Yes, unless data is included in a
  21. character section within this element.</td>
  22. </tr>
  23. <tr>
  24. <td valign="top">file</td>
  25. <td valign="top">the file to write the message to.</td>
  26. <td valign="top" align="center">No</td>
  27. </tr>
  28. <tr>
  29. <td valign="top">append</td>
  30. <td valign="top">Append to an existing file?</td>
  31. <td valign="top" align="center">No - default is false.</td>
  32. </tr>
  33. </table>
  34. <h3>Examples</h3>
  35. <pre> &lt;echo message=&quot;Hello world&quot;/&gt;</pre>
  36. <pre>
  37. &lt;echo&gt;
  38. This is a longer message stretching over
  39. two lines.
  40. &lt;/echo&gt;
  41. </pre>
  42. <hr>
  43. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  44. Reserved.</p>
  45. </body>
  46. </html>