Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Manipulating the argument list
- Date: Thu, 1 Nov 2007 09:51:10 -0500
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Manipulating the argument list
On Thu, Nov 01, 2007 at 03:38:25PM +0100, Atle Rudshaug wrote:
> 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.
>
Write a perl script to write your submit files.
The condor_submit language is not very powerful. It makes the very simplest of
things possible, but doesn't do much more.
-Erik