vote up 0 vote down star

Today I had to add a task to an Apache Ant file. The command line should have been something like

myprogram --param1 --param2 path\somefile 2> path\logfile

The problem with this was that if I used something like the following for this

<exec executable="$(myprogram)"
  <arg value="--param1">
  <arg value="--param2">
  <arg path="$(somefile)">
  <arg value="2>">
  <arg path="$(logfile)">
</exec>

all arguments were quoted, so the command looked like this:

myprogram "--param1" "--param2" "path\somefile" "2>" "path\logfile"

which is not bad and especially nice if you have spaces in your files/path, but destroys the pipe to the logfile (instead, the program thinks there are two additional file arguments "2>" and "path\logfile").

I worked around this by calling a batch script instead that only wants the files as parameters, but I wondered: Is it possible to do this without such a workaround?

flag

3 Answers

vote up 1 vote down check

When you run "myprogram --param1 --param2 path\somefile 2> path\logfile", the arguments to your program end at "2>". File redirection is an operation of your shell, which isn't being used from within ant. If you look at the docs for the ant exec task, you'll see that it supports redirection via the output attribute.

link|flag
Thanks, this seems like the general way to do it (I see there's an error attribute, too, if you want to difference between stdout and stderr). – schnaader Oct 21 at 18:35
vote up 2 vote down

Have you tried <arg line="..." />?

link|flag
I think this should work. – Geo Oct 21 at 18:30
Thanks, this works! I noticed the "line" variant, but the Apache Ant manual doesn't explain the difference between it and "value" well, so I thought it would just be kind of an alias. – schnaader Oct 21 at 18:33
1  
From the Ant docs: It is highly recommended to avoid the line version when possible. Ant will try to split the command line in a way similar to what a (Unix) shell would do, but may create something that is very different from what you expect under some circumstances. ant.apache.org/manual/using.html#arg – Yishai Oct 21 at 18:35
vote up 1 vote down

The ant exec task has an output parameter where you could specify the log file without requiring the command line piping, combined with the parameter append to determine if the output file should be overwritten or appended to.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.