Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
#!/bin/bash
#SBATCH --mail-user=<YOUR_EMAIL>@uams.edu        #<---- Email address to notify
#SBATCH --mail-type=ALL                          #<---- Status to notify the email
#SBATCH --job-name=YourJobName                   #<---- Name of this job
#SBATCH --output=output.txt
#SBATCH --partition=<Nodes group>

                                                            			    #<---- Commands below this point will be run on the assigned node
<< Your compute job scripts go here >>

...