> From: Diane Holt [mailto:[EMAIL PROTECTED]] > > Get rid of the "*" -- you don't need it, since 'ls -l' will list > everything anyway, and including an asterisk in the command line doesn't > work unless you exec 'sh' instead of 'ls'. >
Just to expand a bit on Diane's explanation. On Unix systems, the shell is responsible for wildcard expansion, not the individual commands. when you pass "*" in Ant, the shell is not involved and the command receives the "*" char directly rather than a list of files. Conor -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
