summaryrefslogtreecommitdiffstats
path: root/completions/printenv
blob: 5bd565fc801fb7256c0d8053fecbe8733450f344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# printenv(1) completion                                   -*- shell-script -*-

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

    case $prev in
        --help | --version)
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_help
        return
    fi

    _comp_compgen -- -v
} &&
    complete -F _comp_cmd_printenv printenv

# ex: filetype=sh