RE: Pass Quotes to arg line

2008-07-16 Thread Scot P. Floess
So, assuming one does this, how would one put quotes in place around params? On Wed, 16 Jul 2008, Karr, David wrote: As another poster pointed out, the correct solution is to use multiple "arg"s with "value" attributes, not trying to figure out how to get through the various escaping layers wi

RE: Pass Quotes to arg line

2008-07-16 Thread Karr, David
As another poster pointed out, the correct solution is to use multiple "arg"s with "value" attributes, not trying to figure out how to get through the various escaping layers with the "line" attribute. > -Original Message- > From: Peters, John [mailto:[EMAIL PROTECTED] > Sent: Tuesday, J

RE: Pass Quotes to arg line

2008-07-16 Thread Peters, John
Thank you very much for the work around -Original Message- From: Scot P. Floess [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 9:26 AM To: Ant Users List Subject: Re: Pass Quotes to arg line I have a solution for you that works :) Took me a little googling...but this should

Re: Pass Quotes to arg line

2008-07-16 Thread Scot P. Floess
I have a solution for you that works :) Took me a little googling...but this should do what you want... Please note, the Bash shell script below is entitled myscript.sh and "lives" next to the build.xml: #!/bin/bash echo "Command line params = [$*

Re: Pass Quotes to arg line

2008-07-16 Thread JimCant
The ant manual, of all things, says the following: 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 v different from what you expect under some

RE: Pass Quotes to arg line

2008-07-16 Thread Peters, John
Thank you but that doesn't seem to work with the arg line command. -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 3:59 AM To: Ant Users List Subject: RE: Pass Quotes to arg line -Original Message- From: Lars Monsees [m

RE: Pass Quotes to arg line

2008-07-16 Thread Rebhan, Gilbert
-Original Message- From: Lars Monsees [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 9:51 AM To: Ant Users List Subject: RE: Pass Quotes to arg line /* > Hello, > I'm trying to pass quotes to the arg line for a parameter that has > spaces in it. > I've t

RE: Pass Quotes to arg line

2008-07-16 Thread Lars Monsees
Hi John, > Hello, > I'm trying to pass quotes to the arg line for a parameter that has > spaces in it. > I've tried " but that didn't seem to work. > Also tried "" \". > Any suggestions? I´ve had the same problem some time ago, s. http://tinyurl.com/66tvbv Unfortunately, I haven´t found a soluti