summaryrefslogtreecommitdiff
path: root/completions/dselect
blob: 9da1e927d9eca7cb08cecfd25ad757f9f43c3d61 (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
# Debian Linux dselect(8) completion                       -*- shell-script -*-

_dselect()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        --admindir)
            _filedir -d
            return 0
            ;;
        -D|-debug)
            _filedir
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '--admindir --help --version --licence \
            --license --expert --debug' -- "$cur" ) )
    else
        COMPREPLY=( $( compgen -W 'access update select install config \
            remove quit' -- "$cur" ) )
    fi

    return 0
} &&
complete -F _dselect dselect

# ex: ts=4 sw=4 et filetype=sh