Often in ANT tasks, you will see "**" used similar to below:
<copy todir="/something">
<fileset dir="/source">
<exclude name="**/*.sql"/>
</fileset>
</copy>
What is the **
in the name property? I've never seen the style of wildcard. Why is *.sql
not good enough?