# goo.condor # # Discussion: # # This is a simple example of a condor submit description file. # # The "universe" is "standard". This environment is only suitable # for programs which may need checkpointing or remote system calls # and other features provided by the CONDOR library. # # The "initial directory" tells CONDOR the name of the working # directory. # # The "executable" is the shell script "goo.sh". As our # sample program, it will only perform a few trivial operations. # # No platform is specified, so the default will be used, that is, # the job will be run on a machine which has the same architecture # and operating system as the machine from which the job was submitted. # # The output command specifies a file into which the output from # the program will be written. # # A log file "goo.log" will be produced, containing events that # occur during the execution of the job. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 27 August 2013 # # Author: # # John Burkardt # universe = vanilla initialdir = /lustre/gunz/home/jburkardt/public_html/examples/condor executable = goo.sh log = goo.log output = goo.output queue