Skip to content

Instantly share code, notes, and snippets.

@sivadasetty
Created August 5, 2022 18:39
Show Gist options
  • Save sivadasetty/a5d61ddf815f4de5121a5a0c2514a190 to your computer and use it in GitHub Desktop.
Save sivadasetty/a5d61ddf815f4de5121a5a0c2514a190 to your computer and use it in GitHub Desktop.
Check running jobs on cluster utilizing slurm
squeue -u <username> -p <partition> | awk 'NR>1{print $1}' | xargs -n 1 scontrol show job -d | grep 'StdOut'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment