From 12e734c17f750d267aa5eb5d71755b8244a48a7d Mon Sep 17 00:00:00 2001 From: Hyacinthe Cartiaux Date: Fri, 16 Aug 2024 10:07:05 +0200 Subject: [PATCH] [bash] slurm - improve skol --- bash/bash_slurm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bash_slurm b/bash/bash_slurm index dc263cd..5655a75 100755 --- a/bash/bash_slurm +++ b/bash/bash_slurm @@ -27,5 +27,5 @@ alias sd=' sinfo -d' alias i=' srun -p interactive --qos qos-interactive --time=5:0 --pty bash -i' alias ix=' srun -p interactive --qos qos-interactive --time=5:0 --x11 --pty bash -i' skol() { - sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' | column -t -s'|' | sort + sinfo -M all -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' -e '\*' | column -t -s'|' | sort }