aboutsummaryrefslogblamecommitdiff
path: root/bash/bashrc.d/ssh.bash
blob: da38abce86ea00f5a22dc171de1b40234168d336 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                               
                                                           
        
                                        

                                                 
                                  
                               
                    



                                                
                  
                      

                                                         
                                          





                                                        
                                                
 
# Bail if no ssh(1)
if ! hash ssh 2>/dev/null; then
    return
fi

# Completion for ssh/sftp/ssh-copy-id with config hostnames
_ssh() {
    local word=${COMP_WORDS[COMP_CWORD]}

    # Bail if the configuration file is illegible
    local config=$HOME/.ssh/config
    if [[ ! -r $config ]]; then
        COMPREPLY=()
        return 1
    fi

    # Read hostnames from the file, no asterisks
    local -a hosts
    local option value
    while read -r option value _; do
        if [[ $option == Host && $value != *'*'* ]]; then
            hosts=("${hosts[@]}" "$value")
        fi
    done < "$config"

    # Generate completion reply
    COMPREPLY=( $(compgen -W "${hosts[*]}" -- "$word") )
}
complete -F _ssh -o default ssh sftp ssh-copy-id