Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:40

0001 #!/bin/bash
0002 
0003 # This shell script looks in the jobs directory and submits every job it finds there.
0004 # It is intended to pair with clone_job_with_new_file.sh, which makes those files.
0005 
0006 for file in `ls jobs/`
0007 do
0008     condor_submit jobs/$file
0009 done