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

Re: [Condor-users] passing flags to an executable



Hi,

> executable = blabla -flag 1 -flag 2

If you want to pass arguments to your executable, you should use the
"Arguments" parameter in the submit file (and specify only the executable
name for the "executable" parameter). For the example you provide, the submit
file should include the following lines:

executable = blabla
Arguments = -flag 1 -flag 2

best wishes,

Pascal