I have an exec in Ant that looks like this:
<exec taskname = "convert"
executable = "convert"
failonerror = "true">
<arg line="in=@{file} out=???" />
</exec>
I want to use a command that converts a file. THe in infile name has one extension and the out file another, but the rest of the file name should be the same. How do I get it this way?
The arg line is messed up since I don't know what to write.
<exec taskname = "convert"
executable = "convert"
failonerror = "true">
<arg line="in=@{file} out=???" />
</exec>
I want to use a command that converts a file. THe in infile name has one extension and the out file another, but the rest of the file name should be the same. How do I get it this way?
The arg line is messed up since I don't know what to write.