Forrest logo
back to the squeue tool

squeue:tldr:0df35

squeue: View the queue and refresh every 5 seconds.
$ squeue -i ${5}
try on your machine

The command "squeue" is used to display information about jobs currently in the queue of a computing system. The "-i" flag is used to display more detailed information about the jobs, including jobid, username, jobname, partition, state, nodes, time, and other related details.

The "${5}" in the command is a placeholder that represents a command-line argument or a variable. It refers to the value provided as the fifth argument when running the script or command. The actual value would replace "${5}" in the command.

So, "squeue -i ${5}" would display the detailed information about the job specified by the fifth argument passed when executing the command.

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 squeue tool