--- Zhendi Su <[EMAIL PROTECTED]> wrote:
> I need to expand the wild-card in <exec> task on UNIX. I understand
> that this can not be done directly because the shell and not ant is
> responsible for expanding the wild-card. I wonder if there is a
> workaround. Any help is appreciated!
Just exec the shell instead -- eg:
<target name="run">
<exec executable="sh">
<arg line='-c "ls *.txt"'/>
</exec>
</target>
Diane
=====
([EMAIL PROTECTED])
__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>