#################### # # Example 4 # Submit many small jobs # Needs to by submitted defining Infiles to a comma-separated file list # E.g.: condor_submit Infiles=`ls -m dc_*.txt` submit_many_small_jobs # N.B.: The executable needs to accept comma_separated arguments. # #################### Universe = Vanilla Executable = rhymes_and_reason Transfer_Executable = True Arguments = -l 6 -n 5 \ -o haiku_$(ClusterId)_$(ProcId)_%02d.txt \ $(Infiles) Log = tutorial_jobs.log Error = rhymes_and_reason.stderr Transfer_Input_Files = $(Infiles) Queue 5