~1 min read

Categories

submit the job to the queue: qsub ./executable.src check the job status: qstat -f or  qstat -f -u "*" header lines in executable.src:

#$ -cwd
#$ -j y
#$ -S /bin/bash
#$ -q default.q@compute-0-1.local        # optional, define a specific node to run the code

delete job id between 10000 and 20000:

qdel echo `seq -f "%.0f" 10000 20000`

tip: copy the input files to /state/patition1 on node to prevent high I/O traffic