From 4ff97c4cf31c98e7a8e23f885ec1438c12db50ed Mon Sep 17 00:00:00 2001
From: Jan Materne
"Deletes" files from a zipfile.
++<unzip src="${ant.home}/lib/ant.jar" dest="..."> + <patternset> + <include name="images/"/> + </patternset> +</unzip> ++
This extracts all images from ant.jar which are stored in the images directory +of the Jar (or somewhere under it). While extracting the directory structure (images) +will be taken.
+ ++<unzip src="${ant.home}/lib/ant.jar" dest="..."> + <patternset> + <include name="**/ant_logo_large.gif"/> + <include name="**/LICENSE.txt"/> + </patternset> +</unzip> ++
This extracts the two files ant_logo_large.gif and LICENSE.txt from the +ant.jar. More exactly: it extracts all files with these names from anywhere in the source file. While extracting the directory structure will be taken.