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 1.9 KiB

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