Versions Compared

Key

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

...

Code Block
languagebash
#!/bin/bash
#PBS -k o                              #<---- Only keep the standard out
#PBS -M <YOUR_EMAIL>@uams.edu.          #<---- Email address to notify
#PBS -m abe                            #<---- Status to notify the email (abort,begin,end)
#PHS -N CPUinfo                        #<---- Name of this job
#PBS -j oe                             #<---- Join both the standard out and standard error streams
                                       #<---- Commands below this point will be run on the assigned node
echo "Hello HPC"
lscpu
echo "Goodbye HPC"

...