summaryrefslogtreecommitdiffstats
path: root/completions/ssh-add
blob: 0589972c6198f7f3270eb24fc2a545c02f026f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ssh-add(1) completion                                    -*- shell-script -*-

_comp_cmd_ssh_add()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    case $prev in
        -*E)
            _comp_compgen -- -W 'md5 sha256'
            return
            ;;
        -*H)
            _comp_compgen_filedir
            return
            ;;
        -*h)
            # TODO should we try supporting more types of constraints?
            if [[ $cur == *@* ]]; then
                _comp_complete_user_at_host "$@"
            else
                _comp_compgen_known_hosts -- "$cur"
            fi
            return
            ;;
        -*t)
            return
            ;;
        -*T)
            _comp_compgen_filedir
            return
            ;;
        -*S | -*[se])
            _comp_compgen_filedir so
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_usage -- '-?' || _comp_compgen_help -- '-?'
        return
    fi

    _comp_compgen_filedir
} &&
    complete -F _comp_cmd_ssh_add ssh-add

# ex: filetype=sh