1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 17:25:23 +02:00

[bash] Slurm - rename scol to skol for consistency

This commit is contained in:
Hyacinthe Cartiaux 2024-05-27 10:14:48 +02:00
parent be9a87b876
commit 428f1d948d

View file

@ -26,6 +26,6 @@ alias sqlu='squeue -la -u $USER'
alias sd=' sinfo -d' alias sd=' sinfo -d'
alias i=' srun -p interactive --qos qos-interactive --time=5:0 --pty bash -i' 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' 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 sinfo -o "%E|%T|%N" -p all $* | grep -e '\(drain\|down\|boot\|inval\)' | column -t -s'|' | sort
} }