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

_webmitm()
{
    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 _webmitm webmitm

# ex: filetype=sh