myshellconfig/bash_completion.d/pdsh
2020-01-15 13:53:20 +01:00

11 lines
269 B
Bash

#!/bin/bash
function _pdshgroups() {
COMPREPLY=()
local CUR KEYS
CUR="${COMP_WORDS[COMP_CWORD]}"
KEYS="$(find ~/.dsh/group/* -type f -exec basename {} \;)"
COMPREPLY=( $(compgen -W "${KEYS}" -- ${CUR}) )
return 0
}
complete -F _pdshgroups pdsh