Forrest logo
back to context overview

sbatch

List of commands for sbatch:

  • sbatch:tldr:21b15 sbatch: Submit a batch job with a custom name.
    $ sbatch --job-name=${myjob} ${path-to-job-sh}
    try on your machine
    explain this command
  • sbatch:tldr:29388 sbatch: Submit a job and request multiple nodes.
    $ sbatch --nodes=${3} ${path-to-job-sh}
    try on your machine
    explain this command
  • sbatch:tldr:4a764 sbatch: Submit a batch job.
    $ sbatch ${path-to-job-sh}
    try on your machine
    explain this command
  • sbatch:tldr:dd0d0 sbatch: Submit a batch job with a time limit of 30 minutes.
    $ sbatch --time=${00:30:00} ${path-to-job-sh}
    try on your machine
    explain this command
back to context overview