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

[Condor-users] Manipulating the argument list



My argument list for my executable looks like this:

-c -start=xxx -stop=yyy /path/to/input/file

I want to submit many jobs with "Queue XXX". I want each job to get
different start and stop input. I guess I can use the $(PROCESS)
command for this. But how do I get Process 1 to have input:

-c -start=1 -stop=10 /path/to/input/file

Process 2:

-c -start=11 -stop=20 /path/to/input/file

Process 3:

-c -start=21 -stop=30 /path/to/input/file

etc.

- Atle