Submit script
Once you have a job submission script, you may submit the script to SLURM using the sbatch command. SLURM will find, or wait for, available resources matching your request and run your job there. If you have included your sbatch options as special comments in your submission script, submitting the job is as simple as:
Should you wish to override any of the sbatch options that you've specified in your submission script, you can add them as command-line options to the sbatch command:
This command will override the --qos and --time options that were specified in the script in the Creating the submission script section. You could also choose to omit any sbatch options from your submission script and include them all in the submission command:
Note
Any sbatch options that you specify in the command-line submission will override what is specified in your job submission script.