summaryrefslogtreecommitdiffstats
path: root/completions/vipw
blob: bfaa48af7b90ac1e1a613ecd017545ff050052c0 (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
# vipw(8) and vigr completion                              -*- shell-script -*-

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

    local noargopts='!(-*|*[R]*)'
    # shellcheck disable=SC2254
    case $prev in
        --help | -${noargopts}h)
            return
            ;;
        --root | -${noargopts}R | -d)
            _comp_compgen_filedir -d
            return
            ;;
    esac

    _comp_compgen_help || _comp_compgen_usage
} &&
    complete -F _comp_cmd_vipw vipw vigr

# ex: filetype=sh