Reputation: 1503
I have a folder with two files (a.exe and b.exe) in it and I need to run a command on each. For example xxx - a.exe a.bin
. Is there a way to do this with Ant?
I want ant to run:
xxx - a.exe a.bin
and
xxx - b.exe b.bin
Upvotes: 5
Views: 2395
Reputation: 102418
Use <foreach>
with a nested <FileSet>
.
More info here.
Upvotes: 1