Versions Compared

Key

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

...

The first line of the script, #!/bin/bash, is called the shebang line. This line is required in all submission scripts.  It tells the compute nodes when the script is run what to use to interpret the commands in the script.  In our case everyone’s default shell is bash, so we tell the compute nodes to use bash to interpret our commands.  

...