Your IP : 216.73.217.13


Current Path : /snap/core/17284/usr/share/bash-completion/completions/
Upload File :
Current File : //snap/core/17284/usr/share/bash-completion/completions/newgrp

# newgrp(1) completion                                     -*- shell-script -*-

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

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

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