Kapa
Kapa

Reputation: 21

SLURM - sort squeue by job-names

Is there a way to get the output of squeue ordered by the job-name? I know I can sort, e.g. by job-id via

squeue --sort=+i

but I don't see how to sort by the job-name (given by #SBATCH --job-name XXX).

Upvotes: 2

Views: 1695

Answers (1)

damienfrancois
damienfrancois

Reputation: 59260

As %j is the type specification for the job name in --format strings, sorting by job name would be

squeue --sort=+j

Upvotes: 5

Related Questions