Retrieving from one directory

You can direct Condor to read unique input files for iterative processes from one directory. Create the input files, and use a consistent naming convention that includes the full range of process numbers that you plan to execute.

For example, to run the RanVal.R process 600 times and use unique input files for each execution, you might name your input files in.<process ID>, where <process ID> ranges from 0 - 599. The attributes and command for this example are as follows:

Executable = RanVal.R
Input = in.$(PROCESS)
Queue 600

This example uses a single directory for all iterations of the process.