HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/msys64/usr/share/bash-completion/completions/cfagent
# cfagent completion                                       -*- shell-script -*-

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

    case $prev in
        -f | --file)
            _filedir
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
    fi
} &&
    complete -F _cfagent cfagent

# ex: filetype=sh