summaryrefslogtreecommitdiff
path: root/completions/_newgrp
blob: a2dc3edaed6ab130df4b9118508d80134e6aaace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# newgrp(1) completion                                     -*- shell-script -*-

# Use of this file is deprecated on Linux.  Upstream completion is
# available in util-linux >= 2.23, use that instead.

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

    if [[ $cur == "-" ]]; then
        COMPREPLY=(-)
    else
        _allowed_groups "$cur"
    fi
} &&
    complete -F _newgrp newgrp

# ex: filetype=sh