From f1ca2cd12a5f8ee49386b1255156bd95ad783bc1 Mon Sep 17 00:00:00 2001 From: Hyacinthe Cartiaux Date: Tue, 30 Jan 2024 14:18:57 +0100 Subject: [PATCH] [bash] slurm - fix scol (inval status) --- bash/bash_slurm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bash_slurm b/bash/bash_slurm index 072edbb..dc4235f 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' scol() { - sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\)' | column -t -s'|' | sort + sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' | column -t -s'|' | sort }