summaryrefslogtreecommitdiffstats
path: root/completions/jar
blob: d01a8a49aa015cab49398d65aad719ce2c33e660 (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
# jar(1) completion                                        -*- shell-script -*-

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

    if ((cword == 1)); then
        _comp_compgen -- -W 'c t x u'
        return
    fi

    case ${words[1]} in
        *c*f)
            _comp_compgen_filedir
            ;;
        *f)
            _comp_compgen_filedir_xspec unzip
            ;;
        *)
            _comp_compgen_filedir
            ;;
    esac
} &&
    complete -F _comp_cmd_jar jar

# ex: filetype=sh