AW: Ant version of find and grep

2004-12-12 Thread Jan . Materne
> I would like to know if there is a way in Ant to duplication > the unix 'find' > command, especially to find a file older than time for example. > Fileset doesn't seem to be powerful enough. Sounds that you havent read the manual carefully enough :) Otherwise you would have seen the eleme

Re: Ant version of find and grep

2004-12-10 Thread Jeffrey E Care
FileSet is also a SelectorContainer, so it should be able to do what you want. See here: http://ant.apache.org/manual/CoreTypes/fileset.html and here: http://ant.apache.org/manual/CoreTypes/selectors.html -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere Build SWAT Team Lead WebSphere Build Tool

Ant version of find and grep

2004-12-10 Thread Geoffrey Ritchey
I would like to know if there is a way in Ant to duplication the unix 'find' command, especially to find a file older than time for example. Fileset doesn't seem to be powerful enough. I'm also interested if grep can be done. The obvious seems to be to write a custom task but I don't want