From 428f1d948dc1ddb6d5938c405f16f15362eb6ea1 Mon Sep 17 00:00:00 2001 From: Hyacinthe Cartiaux Date: Mon, 27 May 2024 10:14:48 +0200 Subject: [PATCH] [bash] Slurm - rename scol to skol for consistency --- bash/bash_slurm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bash_slurm b/bash/bash_slurm index dc4235f..dc263cd 100755 --- a/bash/bash_slurm +++ b/bash/bash_slurm @@ -26,6 +26,6 @@ alias sqlu='squeue -la -u $USER' 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() { +skol() { sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' | column -t -s'|' | sort }