Your IP : 18.221.83.34


Current Path : /usr/share/bash-completion/completions/
Upload File :
Current File : //usr/share/bash-completion/completions/grpck

# grpck(8) completion                                      -*- shell-script -*-

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

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

    _filedir
} &&
complete -F _grpck grpck

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