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

RE: [Condor-users] Problem with submission file on Windows



> just a wild stab in the dark but did you try 
> 
>   ...
>  arguments            = tutorial.cmd /w C:\\
>  transfer_input_files = tutorial.cmd

This exhibits the same problem, although at least appears "\" 
in the commandline. As does the following:

>  arguments            = tutorial.cmd /w C:\\_
>  transfer_input_files = tutorial.cmd
(_ represents a space)

> or if that doesn't work
> 
> ...
> arguments            = tutorial.cmd /w C:\
> 
> transfer_input_files = tutorial.cmd

This prevents the 2 lines joining, but loses the backslash.

> arguments            = tutorial.cmd /w C:\\
> 
> transfer_input_files = tutorial.cmd

This gives the desired result.

JK