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.

unpack.html 2.0 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. [[unpack.html]]
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Language" content="en-us">
  5. <title>Apache Ant User Manual</title>
  6. </head>
  7. <body>
  8. <h2><a name="unpack">GUnzip/BUnzip2</a></h2>
  9. <h3>Description</h3>
  10. <p>Expands a file packed using GZip or BZip2.</p>
  11. <p>If <i>dest</i> is a directory the name of the destination file is
  12. the same as <i>src</i> (with the &quot;.gz&quot; or &quot;.bz2&quot;
  13. extension removed if present). If <i>dest</i> is omitted, the parent
  14. dir of <i>src</i> is taken. The file is only expanded if the source
  15. file is newer than the destination file, or when the destination file
  16. does not exist.</p>
  17. <h3>Parameters</h3>
  18. <table border="1" cellpadding="2" cellspacing="0">
  19. <tr>
  20. <td valign="top"><b>Attribute</b></td>
  21. <td valign="top"><b>Description</b></td>
  22. <td align="center" valign="top"><b>Required</b></td>
  23. </tr>
  24. <tr>
  25. <td valign="top">src</td>
  26. <td valign="top">the file to expand.</td>
  27. <td align="center" valign="top">Yes</td>
  28. </tr>
  29. <tr>
  30. <td valign="top">dest</td>
  31. <td valign="top">the destination file or directory.</td>
  32. <td align="center" valign="top">No</td>
  33. </tr>
  34. </table>
  35. <h3>Examples</h3>
  36. <blockquote>
  37. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;</code></p>
  38. </blockquote>
  39. <p>expands <i>test.tar.gz</i> to <i>test.tar</i></p>
  40. <blockquote>
  41. <p><code>&lt;bunzip2 src=&quot;test.tar.bz2&quot;/&gt;</code></p>
  42. </blockquote>
  43. <p>expands <i>test.tar.bz2</i> to <i>test.tar</i></p>
  44. <blockquote>
  45. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;</code></p>
  46. </blockquote>
  47. <p>expands <i>test.tar.gz</i> to <i>test2.tar</i></p>
  48. <blockquote>
  49. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;</code></p>
  50. </blockquote>
  51. <p>expands <i>test.tar.gz</i> to <i>subdir/test.tar</i> (assuming
  52. subdir is a directory).</p>
  53. <hr>
  54. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  55. Reserved.</p>
  56. </body>
  57. </html>