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.

pack.html 1.2 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>GZip/BZip2</title>
  5. </head>
  6. <body>
  7. <h2><a name="pack">GZip/BZip2</a></h2>
  8. <h3>Description</h3>
  9. <p>Packs a file using the GZip or BZip2 algorithm.
  10. These tasks do not do any dependency checking; the output file is
  11. always generated</p>
  12. <h3>Parameters</h3>
  13. <table border="1" cellpadding="2" cellspacing="0">
  14. <tr>
  15. <td valign="top"><b>Attribute</b></td>
  16. <td valign="top"><b>Description</b></td>
  17. <td align="center" valign="top"><b>Required</b></td>
  18. </tr>
  19. <tr>
  20. <td valign="top">src</td>
  21. <td valign="top">the file to gzip/bzip.</td>
  22. <td align="center" valign="top">Yes</td>
  23. </tr>
  24. <tr>
  25. <td valign="top">zipfile</td>
  26. <td valign="top">the destination file.</td>
  27. <td align="center" valign="top">Yes</td>
  28. </tr>
  29. </table>
  30. <h3>Examples</h3>
  31. <blockquote>
  32. <p><code>&lt;gzip src=&quot;test.tar&quot; zipfile=&quot;test.tar.gz&quot;
  33. /&gt;</code></p>
  34. </blockquote>
  35. <blockquote>
  36. <p><code>&lt;bzip2 src=&quot;test.tar&quot; zipfile=&quot;test.tar.bz2&quot;
  37. /&gt;</code></p>
  38. </blockquote>
  39. <hr>
  40. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  41. Reserved.</p>
  42. </body>
  43. </html>