summaryrefslogtreecommitdiff
path: root/completions/sshmitm
blob: 8b320fa8d4d90e220d84e13e2450384ba62e7c85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# sshmitm completion                                       -*- shell-script -*-

_sshmitm()
{
    local cur prev words cword
    _init_completion || return

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $(compgen -W '$(_parse_usage "$1")' -- "$cur") )
    else
        _known_hosts_real -- "$cur"
    fi

} &&
complete -F _sshmitm sshmitm

# ex: filetype=sh