[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] parsing arguments with whitespaces




--------------------------------------------------------------------------------------------------

[4] So at the end I gave up with the \ , and decided to try just duplicated double quotes inside double quotes

    Arguments = "--opt1=value --opt2=""hello world"" "

and internally the second argument is converted into --opt="hello world"
which I think is what I need

--------------------------------------------------------------------------------------------------


[5] One final test. Duplicating single quotes inside double quotes

      Arguments = "--opt1=value --opt2=' 'hello world' ' " 

and the second argument is converted into --opt2=hello world