groot/files/bash_completion

11 lines
297 B
Bash
Raw Normal View History

2024-11-08 16:14:46 +01:00
function _connect() {
COMPREPLY=()
local currentWord=${COMP_WORDS[COMP_CWORD]}
local completeHosts=$(cat /etc/passwd|grep "/var/www/sites"|cut -d ':' -f 1)
COMPREPLY=($(compgen -W "$completeHosts" -- "$currentWord"))
return 0
}
complete -F _connect groot