aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/ssh.bash
blob: 696e9b34b27b3a80648563cbf749b9dc9e052128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Completion for ssh/sftp/ssh-copy-id with config hostnames
_ssh() {
    local word=${COMP_WORDS[COMP_CWORD]}

    # Read hostnames from existent config files, no asterisks
    local -a hosts
    local config option value
    for config in "$HOME"/.ssh/config /etc/ssh/ssh_config ; do
        if [[ -e $config ]] ; then
            while read -r option value _ ; do
                if [[ $option == Host && $value != *'*'* ]] ; then
                    hosts=("${hosts[@]}" "$value")
                fi
            done < "$config"
        fi
    done

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