Skip to content
Snippets Groups Projects
Commit f5c38877 authored by Lukas Jelonek's avatar Lukas Jelonek
Browse files

Add alternative list slurm nodes command

parent 4ae060e1
No related branches found
No related tags found
No related merge requests found
......@@ -11,3 +11,9 @@ srun --pty -c 1 --mem=4G /bin/bash
```bash
scontrol show nodes | awk '/NodeName/ {print $1}' | cut -d= -f2
```
Alternative
```bash
sinfo --Node | awk '{print $1}' | tail -n+2
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment