Home | History | Annotate | Download | only in bash_completion

Lines Matching refs:compgen

66             COMPREPLY=( $(compgen -W "$OPTIONS $COMMAND" -- "$cur") )
70 COMPREPLY=( $(compgen -W "${devices}" -- ${cur}) )
74 COMPREPLY=( $(compgen -W "$COMMAND" -- "$cur") )
90 COMPREPLY=( $(compgen -W "${args}" -- "${COMP_WORDS[i]}") )
129 COMPREPLY=( $(compgen -W "-l -r -s" -- "${cur}") )
192 COMPREPLY=( $(compgen -W "$COMMAND" -- "$cur") )
237 COMPREPLY=( $(compgen -W "-k" -- "${cur}") )
249 COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -W "${packages}" -- "${cur}") )
283 COMPREPLY=( $(compgen -W "$OPTIONS" -- "$cur") )
340 COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -f -- "${cur}") )
343 COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -f -X "${xspec}" -- "${cur}") )
348 dirs=( $(compgen -d -- "${cur}" ) )
351 files=( ${COMPREPLY[@]:-} $(compgen -f -- "${cur}") )
353 files=( ${COMPREPLY[@]:-} $(compgen -f -X "${xspec}" -- "${cur}") )