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

[Condor-users] Looping in Condor job description scripts?



Hi, dear Condor-users,

Is it possible to do looping inside a Condor job description file? Here is logic of describing what I want to do:

......
Arguments = $(parameter)
......
DO i = 1, N
parameter = i
queue
ENDDO

So I can submit N jobs without the trouble of using Shell/Perl/Python to generate N different files then use condor_submit N times.

Thanks!

--- Wei