summaryrefslogtreecommitdiff
path: root/completions/passwd
blob: 66f7773e0e9656c5218254df0d3008d196b2813e (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
# passwd(1) completion

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

    case $prev in
        -n|--minimum|-x|--maximum|-w|--warning|-i|--inactive|-\?|--help|--usage)
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
        return 0
    fi

    _allowed_users
} &&
complete -F _passwd passwd

# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh