AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 3.21.247.221


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

# sshfs(1) completion                                      -*- shell-script -*-

_sshfs()
{
    local cur prev words cword
    _init_completion -n : || return

    _expand || return

    if [[ $cur == *:* ]]; then
        _xfunc ssh _scp_remote_files -d
        # unlike scp and rsync, sshfs works with 1 backslash instead of 3
        COMPREPLY=("${COMPREPLY[@]//\\\\\\/\\}")
        return
    fi

    [[ $cur == @(*/|[.~])* ]] || _known_hosts_real -c -a -- "$cur"

    _xfunc ssh _scp_local_files -d
} &&
    complete -F _sshfs -o nospace sshfs

# ex: filetype=sh