...
- The very first line of the script file is the Shebang line and must be on the first line.
The second section contains the PBS directives. For more information on PBS directives please see the HPRC PBS script files page.
PBS Directive #PBS -c s
Checkpointing is to be done on a job at pbs_mom
shutdown.#PBS -j oe
Merge standard output and standard error streams into the named file. #PBS -N ML_analysis
#PBS -l pmem=5gb
#PBS -l walltime=500:00:00
#PBS -m ae
#PBS -M your.name@jcu.edu.au
- The third section outputs information about the job, and is only included as an example of what can be done.
- The fourth section containf the commands that are actually run in the job. In this case we are using a bash shell.
...
Expand | ||||
---|---|---|---|---|
| ||||
More qstat examples
|
Deleting a job - qdel
If you need to your job you can use the qdel command
...