mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 07:41:29 +00:00
26 lines
451 B
Plaintext
26 lines
451 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# squeue
|
|
|
|
> View the jobs queued in the SLURM scheduler.
|
|
> More information: <https://manned.org/squeue>.
|
|
|
|
- View the queue:
|
|
|
|
`squeue`
|
|
|
|
- View jobs queued by a specific user:
|
|
|
|
`squeue {{[-u|--user]}} {{username}}`
|
|
|
|
- View the queue and refresh every 5 seconds:
|
|
|
|
`squeue {{[-i|--iterate]}} {{5}}`
|
|
|
|
- View the queue with expected start times:
|
|
|
|
`squeue --start`
|