mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
6 lines
128 B
Bash
6 lines
128 B
Bash
|
|
# slurm command completion
|
|
function _slurm_hosts() {
|
|
_values `sinfo -o "%N" -h | tr ',' ' '`
|
|
}
|
|
compdef _slurm_hosts salloc
|