Forrest logo
back to the qsub tool

qsub:tldr:79d6d

qsub: Submit a script to a specific queue. Note that different queues can have different maximum and minimum runtime limits.
$ qsub -q ${queue_name} ${script-sh}
try on your machine

The command "qsub" is used to submit a job to a cluster scheduler, and it is typically used in high-performance computing environments. The specific behavior of "qsub" may differ across different schedulers, but in general, it is used to submit batch jobs.

In the given command, "qsub" is followed by several arguments:

  1. "-q" specifies the queue to which the job is submitted. The value of "${queue_name}" is a variable, and it should be replaced with the actual name of the desired queue.

  2. "${script.sh}" refers to the name of the script file or the path to the script that should be run as the job.

The purpose of this command is to submit a job to the cluster scheduler using the specified queue and execute the designated script. The cluster scheduler will then allocate resources and run the script according to the specified queue's policies and available resources.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the qsub tool