You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by pe...@apache.org on 2005/03/08 19:23:17 UTC

cvs commit: ant/docs/manual/CoreTasks ant.html antcall.html available.html basename.html buildnumber.html checksum.html chmod.html pack.html unpack.html

peterreilly    2005/03/08 10:23:17

  Modified:    docs/manual/CoreTasks Tag: ANT_16_BRANCH ant.html
                        antcall.html available.html basename.html
                        buildnumber.html checksum.html chmod.html pack.html
                        unpack.html
  Log:
  sync
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.18.2.9  +40 -40    ant/docs/manual/CoreTasks/ant.html
  
  Index: ant.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/ant.html,v
  retrieving revision 1.18.2.8
  retrieving revision 1.18.2.9
  diff -u -r1.18.2.8 -r1.18.2.9
  --- ant.html	14 Dec 2004 23:48:01 -0000	1.18.2.8
  +++ ant.html	8 Mar 2005 18:23:16 -0000	1.18.2.9
  @@ -198,72 +198,72 @@
   </table>
   
   <h3>Examples</h3>
  -<pre>
  -  &lt;ant antfile=&quot;subproject/subbuild.xml&quot; dir=&quot;subproject&quot; target=&quot;compile&quot;/&gt;
  -
  -  &lt;ant dir=&quot;subproject&quot;/&gt;
  -
  -  &lt;ant antfile=&quot;subproject/property_based_subbuild.xml&quot;&gt;
  -    &lt;property name=&quot;param1&quot; value=&quot;version 1.x&quot;/&gt;
  -    &lt;property file=&quot;config/subproject/default.properties&quot;/&gt;
  -  &lt;/ant&gt;
  -
  -  &lt;ant inheritAll=&quot;false&quot; antfile=&quot;subproject/subbuild.xml&quot;&gt;
  -    &lt;property name=&quot;output.type&quot; value=&quot;html&quot;/&gt;
  -  &lt;/ant&gt;
  -</pre>
  -
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subproject/subbuild.xml&quot;
  +     dir=&quot;subproject&quot; target=&quot;compile&quot;/&gt;
  +
  +&lt;ant dir=&quot;subproject&quot;/&gt;
  +
  +&lt;ant antfile=&quot;subproject/property_based_subbuild.xml&quot;&gt;
  +  &lt;property name=&quot;param1&quot; value=&quot;version 1.x&quot;/&gt;
  +  &lt;property file=&quot;config/subproject/default.properties&quot;/&gt;
  +&lt;/ant&gt;
  +
  +&lt;ant inheritAll=&quot;false&quot; antfile=&quot;subproject/subbuild.xml&quot;&gt;
  +  &lt;property name=&quot;output.type&quot; value=&quot;html&quot;/&gt;
  +&lt;/ant&gt;
  +</pre></blockquote>
   <p>The build file of the calling project defines some
   <code>&lt;path&gt;</code> elements like this:</p>
   
  -<pre>
  -  &lt;path id="path1"&gt;
  +<blockquote><pre>
  +&lt;path id="path1"&gt;
       ...
  -  &lt;/path&gt;
  -  &lt;path id="path2"&gt;
  +&lt;/path&gt;
  +&lt;path id="path2"&gt;
       ...
  -  &lt;/path&gt;
  -</pre>
  +&lt;/path&gt;
  +</pre></blockquote>
   
   <p>and the called build file (<code>subbuild.xml</code>) also defines
   a <code>&lt;path&gt;</code> with the id <code>path1</code>, but
   <code>path2</code> is not defined:</p>
   
  -<pre>
  -  &lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;true&quot;/&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;true&quot;/&gt;
  +</pre></blockquote>
   
   <p>will not override <code>subbuild</code>'s definition of
   <code>path1</code>, but make the parent's definition of
   <code>path2</code> available in the subbuild.</p>
   
  -<pre>
  -  &lt;ant antfile=&quot;subbuild.xml&quot;/&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subbuild.xml&quot;/&gt;
  +</pre></blockquote>
   
   <p>as well as</p>
   
  -<pre>
  -  &lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;/&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;/&gt;
  +</pre></blockquote>
   
   <p>will neither override <code>path1</code> nor copy
   <code>path2</code>.</p>
   
  -<pre>
  -  &lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
  -    &lt;reference refid=&quot;path1&quot;/&gt;
  -  &lt;/ant&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
  +  &lt;reference refid=&quot;path1&quot;/&gt;
  +&lt;/ant&gt;
  +</pre></blockquote>
   
   <p>will override <code>subbuild</code>'s definition of
   <code>path1</code>.</p>
   
  -<pre>
  -  &lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
  -    &lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
  -  &lt;/ant&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;ant antfile=&quot;subbuild.xml&quot; inheritrefs=&quot;false&quot;&gt;
  +  &lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
  +&lt;/ant&gt;
  +</pre></blockquote>
   
   <p>will copy the parent's definition of <code>path1</code> into the
   new project using the id <code>path2</code>.</p>
  
  
  
  1.18.2.9  +15 -15    ant/docs/manual/CoreTasks/antcall.html
  
  Index: antcall.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/antcall.html,v
  retrieving revision 1.18.2.8
  retrieving revision 1.18.2.9
  diff -u -r1.18.2.8 -r1.18.2.9
  --- antcall.html	14 Dec 2004 23:48:01 -0000	1.18.2.8
  +++ antcall.html	8 Mar 2005 18:23:16 -0000	1.18.2.9
  @@ -147,24 +147,24 @@
   <p><em>since Ant 1.6.3</em>.</p>
   
   <h3>Examples</h3>
  -<pre>
  -  &lt;target name=&quot;default&quot;&gt;
  -    &lt;antcall target=&quot;doSomethingElse&quot;&gt;
  -      &lt;param name=&quot;param1&quot; value=&quot;value&quot;/&gt;
  -    &lt;/antcall&gt;
  -  &lt;/target&gt;
  +<blockquote><pre>
  +&lt;target name=&quot;default&quot;&gt;
  +  &lt;antcall target=&quot;doSomethingElse&quot;&gt;
  +    &lt;param name=&quot;param1&quot; value=&quot;value&quot;/&gt;
  +  &lt;/antcall&gt;
  +&lt;/target&gt;
   
  -  &lt;target name=&quot;doSomethingElse&quot;&gt;
  -    &lt;echo message=&quot;param1=${param1}&quot;/&gt;
  -  &lt;/target&gt;
  -</pre>
  +&lt;target name=&quot;doSomethingElse&quot;&gt;
  +  &lt;echo message=&quot;param1=${param1}&quot;/&gt;
  +&lt;/target&gt;
  +</pre></blockquote>
   <p>Will run the target 'doSomethingElse' and echo 'param1=value'.</p>
   
  -<pre>
  -  &lt;antcall ... &gt;
  -    &lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
  -  &lt;/antcall&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;antcall ... &gt;
  +  &lt;reference refid=&quot;path1&quot; torefid=&quot;path2&quot;/&gt;
  +&lt;/antcall&gt;
  +</pre></blockquote>
   
   <p>will copy the parent's definition of <code>path1</code> into the
   new project using the id <code>path2</code>.</p>
  
  
  
  1.11.2.3  +15 -11    ant/docs/manual/CoreTasks/available.html
  
  Index: available.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/available.html,v
  retrieving revision 1.11.2.2
  retrieving revision 1.11.2.3
  diff -u -r1.11.2.2 -r1.11.2.3
  --- available.html	9 Feb 2004 22:12:06 -0000	1.11.2.2
  +++ available.html	8 Mar 2005 18:23:16 -0000	1.11.2.3
  @@ -87,37 +87,41 @@
   href="../using.html#path">path-like structure</a> and can also be set via a nested
   <code>&lt;filepath&gt;</code> element.</p>
   <h3>Examples</h3>
  -<pre>  &lt;available classname=&quot;org.whatever.Myclass&quot; property=&quot;Myclass.present&quot;/&gt;</pre>
  +<blockquote><pre>
  +&lt;available classname=&quot;org.whatever.Myclass&quot; property=&quot;Myclass.present&quot;/&gt;
  +</pre></blockquote>
   <p>sets the <code>Myclass.present</code> property to the value &quot;true&quot;
   if the class <code>org.whatever.Myclass</code> is found in Ant's classpath.</p>
  -<pre>
  +<blockquote><pre>
   &lt;property name=&quot;jaxp.jar&quot; value=&quot;./lib/jaxp11/jaxp.jar&quot;/&gt;
   &lt;available file=&quot;${jaxp.jar}&quot; property=&quot;jaxp.jar.present&quot;/&gt;
  -</pre>
  +</pre></blockquote>
   <p>sets the <code>jaxp.jar.present</code> property to the value &quot;true&quot;
   if the file <code>./lib/jaxp11/jaxp.jar</code> is found.</p>
  -<pre>
  -&lt;available file=&quot;/usr/local/lib&quot; type=&quot;dir&quot; property=&quot;local.lib.present&quot;/&gt;
  -</pre>
  +<blockquote><pre>
  +&lt;available file=&quot;/usr/local/lib&quot; type=&quot;dir&quot;
  +           property=&quot;local.lib.present&quot;/&gt;
  +</pre></blockquote>
   <p>sets the <code>local.lib.present</code> property to the value &quot;true&quot;
   if the directory <code>/usr/local/lib</code> is found.</p>
  -<pre>
  +<blockquote><pre>
   ...in project ...
   &lt;property name=&quot;jaxp.jar&quot; value=&quot;./lib/jaxp11/jaxp.jar&quot;/&gt;
   &lt;path id=&quot;jaxp&quot; location=&quot;${jaxp.jar}&quot;/&gt;
   ...in target ...
  -&lt;available classname=&quot;javax.xml.transform.Transformer&quot; classpathref=&quot;jaxp&quot; property=&quot;jaxp11.present&quot;/&gt;
  -</pre>
  +&lt;available classname=&quot;javax.xml.transform.Transformer&quot;
  +           classpathref=&quot;jaxp&quot; property=&quot;jaxp11.present&quot;/&gt;
  +</pre></blockquote>
   <p>sets the <code>jaxp11.present</code> property to the value &quot;true&quot;
   if the class <code>javax.xml.transform.Transformer</code> is found in the classpath referenced by <code>jaxp</code> (in this case, <code>./lib/jaxp11/jaxp.jar</code>).
   </p>
  -<pre>
  +<blockquote><pre>
   &lt;available property=&quot;have.extras&quot; resource=&quot;extratasks.properties&quot;&gt;
     &lt;classpath&gt;
       &lt;pathelement location=&quot;/usr/local/ant/extra.jar/&gt;
   &nbsp;&nbsp;&lt;/classpath&gt;
   &lt;/available&gt;
  -</pre>
  +</pre></blockquote>
   <p>sets the <code>have.extras</code> property to the value &quot;true&quot;
   if the resource-file <code>extratasks.properties</code> is found.
   </p>
  
  
  
  1.3.4.3   +11 -4     ant/docs/manual/CoreTasks/basename.html
  
  Index: basename.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/basename.html,v
  retrieving revision 1.3.4.2
  retrieving revision 1.3.4.3
  diff -u -r1.3.4.2 -r1.3.4.3
  --- basename.html	9 Feb 2004 22:12:06 -0000	1.3.4.2
  +++ basename.html	8 Mar 2005 18:23:16 -0000	1.3.4.3
  @@ -48,16 +48,23 @@
   </table>
   
   <h3>Examples</h3>
  -<pre>  &lt;basename property=&quot;jar.filename&quot; file=&quot;${lib.jarfile}&quot;/&gt;</pre>
  +<blockquote><pre>
  +&lt;basename property=&quot;jar.filename&quot; file=&quot;${lib.jarfile}&quot;/&gt;
  +</pre></blockquote>
   will set <code>jar.filename</code> to
   <code>myjar.jar</code>, if <code>lib.jarfile</code> is defined as either a
   full-path filename (eg., <code>/usr/local/lib/myjar.jar</code>),
   a relative-path filename (eg., <code>lib/myjar.jar</code>),
   or a simple filename (eg., <code>myjar.jar</code>).
  -<pre>  &lt;basename property=&quot;cmdname&quot; file=&quot;D:/usr/local/foo.exe&quot; suffix=&quot;.exe&quot;/&gt;</pre>
  +<blockquote><pre>
  +&lt;basename property=&quot;cmdname&quot; file=&quot;D:/usr/local/foo.exe&quot;
  +         suffix=&quot;.exe&quot;/&gt;
  +</pre></blockquote>
   will set <code>cmdname</code> to <code>foo</code>.
  -<pre>  &lt;property environment=&quot;env&quot;/&gt;
  -  &lt;basename property=&quot;temp.dirname&quot; file=&quot;${env.TEMP}&quot;/&gt;</pre>
  +<blockquote><pre>
  +&lt;property environment=&quot;env&quot;/&gt;
  +&lt;basename property=&quot;temp.dirname&quot; file=&quot;${env.TEMP}&quot;/&gt;
  +</pre></blockquote>
   
   will set <code>temp.dirname</code> to the last directory element of
   the path defined for the <code>TEMP</code> environment variable.</p>
  
  
  
  1.2.4.3   +6 -2      ant/docs/manual/CoreTasks/buildnumber.html
  
  Index: buildnumber.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/buildnumber.html,v
  retrieving revision 1.2.4.2
  retrieving revision 1.2.4.3
  diff -u -r1.2.4.2 -r1.2.4.3
  --- buildnumber.html	9 Feb 2004 22:12:06 -0000	1.2.4.2
  +++ buildnumber.html	8 Mar 2005 18:23:16 -0000	1.2.4.3
  @@ -37,12 +37,16 @@
   </table>
   
   <h3>Examples</h3>
  -<pre>  &lt;buildnumber/&gt;</pre>
  +<blockquote><pre>
  +&lt;buildnumber/&gt;
  +</pre></blockquote>
   
   <p>Read, increment, and write a build number to the default file,
   <code>build.number</code>.</p>
   
  -<pre>  &lt;buildnumber file=&quot;mybuild.number&quot;/&gt;</pre>
  +<blockquote><pre>
  +&lt;buildnumber file=&quot;mybuild.number&quot;/&gt;
  +</pre></blockquote>
   
   <p>Read, increment, and write a build number to the file
   <code>mybuild.number</code>.</p>
  
  
  
  1.8.2.7   +11 -11    ant/docs/manual/CoreTasks/checksum.html
  
  Index: checksum.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/checksum.html,v
  retrieving revision 1.8.2.6
  retrieving revision 1.8.2.7
  diff -u -r1.8.2.6 -r1.8.2.7
  --- checksum.html	16 Feb 2005 14:35:16 -0000	1.8.2.6
  +++ checksum.html	8 Mar 2005 18:23:16 -0000	1.8.2.7
  @@ -132,48 +132,48 @@
   
   <h3>Examples</h3>
   <p><b>Example 1</b></p>
  -<pre>&lt;checksum file=&quot;foo.bar&quot;/&gt;</pre>
  +<blockquote><pre>&lt;checksum file=&quot;foo.bar&quot;/&gt;</pre></blockquote>
   Generates a MD5 checksum for foo.bar and stores the checksum in the destination file
   foo.bar.MD5.  foo.bar.MD5 is overwritten only if foo.bar is newer than itself.
   
   <p><b>Example 2</b></p>
  -<pre>&lt;checksum file=&quot;foo.bar&quot; forceOverwrite=&quot;yes&quot;/&gt;</pre>
  +<blockquote><pre>&lt;checksum file=&quot;foo.bar&quot; forceOverwrite=&quot;yes&quot;/&gt;</pre></blockquote>
   Generates a MD5 checksum for foo.bar and stores the checksum in foo.bar.MD5.
   If foo.bar.MD5 already exists, it is overwritten.
   
   <p><b>Example 3</b></p>
  -<pre>&lt;checksum file=&quot;foo.bar&quot; property=&quot;foobarMD5&quot;/&gt;</pre>
  +<blockquote><pre>&lt;checksum file=&quot;foo.bar&quot; property=&quot;foobarMD5&quot;/&gt;</pre></blockquote>
   Generates a MD5 checksum for foo.bar and stores it in the Project Property foobarMD5.
   
   <p><b>Example 4</b></p>
  -<pre>&lt;checksum file=&quot;foo.bar&quot; verifyProperty=&quot;isMD5ok&quot;/&gt;</pre>
  +<blockquote><pre>&lt;checksum file=&quot;foo.bar&quot; verifyProperty=&quot;isMD5ok&quot;/&gt;</pre></blockquote>
   Generates a MD5 checksum for foo.bar, compares it against foo.bar.MD5 and sets
   isMD5ok to either true or false, depending upon the result.
   
   <p><b>Example 5</b></p>
  -<pre>&lt;checksum file=&quot;foo.bar&quot; algorithm=&quot;SHA&quot; fileext=&quot;asc&quot;/&gt;</pre>
  +<blockquote><pre>&lt;checksum file=&quot;foo.bar&quot; algorithm=&quot;SHA&quot; fileext=&quot;asc&quot;/&gt;</pre></blockquote>
   Generates a SHA checksum for foo.bar and stores the checksum in the destination file
   foo.bar.asc.  foo.bar.asc is overwritten only if foo.bar is newer than itself.
   
   <p><b>Example 6</b></p>
  -<pre>
  +<blockquote><pre>
   &lt;checksum file=&quot;foo.bar&quot; property=&quot;${md5}&quot; verifyProperty=&quot;isEqual&quot;/&gt;
  -</pre>
  +</pre></blockquote>
   Generates a MD5 checksum for foo.bar, compares it against the value of the property
   md5, and sets isEqual to either true or false, depending upon the result.
   
   <p><b>Example 7</b></p>
  -<pre>
  +<blockquote><pre>
   &lt;checksum&gt;
     &lt;fileset dir=&quot;.&quot;&gt;
       &lt;include name=&quot;foo*&quot;/&gt;
     &lt;/fileset&gt;
   &lt;/checksum&gt;
  -</pre>
  +</pre></blockquote>
   Works just like Example 1, but generates a .MD5 file for every file that begins with the name foo.
   
   <p><b>Example 8</b></p>
  -<pre>
  +<blockquote><pre>
   &lt;condition property=&quot;isChecksumEqual&quot;&gt;
     &lt;checksum&gt;
       &lt;fileset dir=&quot;.&quot;&gt;
  @@ -181,7 +181,7 @@
       &lt;/fileset&gt;
     &lt;/checksum&gt;
   &lt;/condition&gt;
  -</pre>
  +</pre></blockquote>
   Works like Example 4, but only sets isChecksumEqual to true, if the
   checksum matches - it will never be set to false.  This example
   demonstrates use with the Condition task.
  
  
  
  1.15.2.4  +1 -1      ant/docs/manual/CoreTasks/chmod.html
  
  Index: chmod.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/chmod.html,v
  retrieving revision 1.15.2.3
  retrieving revision 1.15.2.4
  diff -u -r1.15.2.3 -r1.15.2.4
  --- chmod.html	16 Nov 2004 08:13:33 -0000	1.15.2.3
  +++ chmod.html	8 Mar 2005 18:23:16 -0000	1.15.2.4
  @@ -145,7 +145,7 @@
     &lt;/dirset&gt;
   &lt;/chmod&gt;
   </pre>
  -</blockquote>
  +</blockquote>blockquote>
   
   <p>keeps non-owners from touching cgi scripts, files with a <code>.old</code>
   extension or directories beginning with <code>private_</code>. A directory 
  
  
  
  1.8.2.3   +6 -6      ant/docs/manual/CoreTasks/pack.html
  
  Index: pack.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/pack.html,v
  retrieving revision 1.8.2.2
  retrieving revision 1.8.2.3
  diff -u -r1.8.2.2 -r1.8.2.3
  --- pack.html	9 Feb 2004 22:12:07 -0000	1.8.2.2
  +++ pack.html	8 Mar 2005 18:23:16 -0000	1.8.2.3
  @@ -36,12 +36,12 @@
     </tr>
   </table>
   <h3>Examples</h3>
  -<blockquote>
  -  <p><code>&lt;gzip src=&quot;test.tar&quot; destfile=&quot;test.tar.gz&quot;/&gt;</code></p>
  -</blockquote>
  -<blockquote>
  -  <p><code>&lt;bzip2 src=&quot;test.tar&quot; destfile=&quot;test.tar.bz2&quot;/&gt;</code></p>
  -</blockquote>
  +<blockquote><pre>
  +&lt;gzip src=&quot;test.tar&quot; destfile=&quot;test.tar.gz&quot;/&gt;
  +</pre></blockquote>
  +<blockquote><pre>
  +&lt;bzip2 src=&quot;test.tar&quot; destfile=&quot;test.tar.bz2&quot;/&gt;
  +</pre></blockquote>
   <hr>
   <p align="center">Copyright &copy; 2000-2004 The Apache Software Foundation. All rights
   Reserved.</p>
  
  
  
  1.5.2.3   +12 -12    ant/docs/manual/CoreTasks/unpack.html
  
  Index: unpack.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/unpack.html,v
  retrieving revision 1.5.2.2
  retrieving revision 1.5.2.3
  diff -u -r1.5.2.2 -r1.5.2.3
  --- unpack.html	9 Feb 2004 22:12:07 -0000	1.5.2.2
  +++ unpack.html	8 Mar 2005 18:23:16 -0000	1.5.2.3
  @@ -38,21 +38,21 @@
     </tr>
   </table>
   <h3>Examples</h3>
  -<blockquote>
  -  <p><code>&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;</code></p>
  -</blockquote>
  +<blockquote><pre>
  +&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;
  +</pre></blockquote>
   <p>expands <i>test.tar.gz</i> to <i>test.tar</i></p>
  -<blockquote>
  -  <p><code>&lt;bunzip2 src=&quot;test.tar.bz2&quot;/&gt;</code></p>
  -</blockquote>
  +<blockquote><pre>
  +&lt;bunzip2 src=&quot;test.tar.bz2&quot;/&gt;
  +</pre></blockquote>
   <p>expands <i>test.tar.bz2</i> to <i>test.tar</i></p>
  -<blockquote>
  -  <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;</code></p>
  -</blockquote>
  +<blockquote><pre>
  +&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;
  +</pre></blockquote>
   <p>expands <i>test.tar.gz</i> to <i>test2.tar</i></p>
  -<blockquote>
  -  <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;</code></p>
  -</blockquote>
  +<blockquote><pre>
  +&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;
  +</pre></blockquote>
   <p>expands <i>test.tar.gz</i> to <i>subdir/test.tar</i> (assuming
   subdir is a directory).</p>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org