Your IP : 3.14.133.134


Current Path : /usr/share/bash-completion/completions/
Upload File :
Current File : //usr/share/bash-completion/completions/sshmitm

# 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: ts=4 sw=4 et filetype=sh