1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 09:15:24 +02:00

[bash] slurm - fix scol (inval status)

This commit is contained in:
Hyacinthe Cartiaux 2024-01-30 14:18:57 +01:00
parent 105201ccdb
commit f1ca2cd12a

View file

@ -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
}