mirror of
https://github.com/minio/minio.git
synced 2025-02-11 21:58:09 -05:00
git-subtree-dir: third_party/src/github.com/codegangsta/cli git-subtree-split: f7ebb761e83e21225d1d8954fde853bf8edd46c4
13 lines
353 B
Bash
13 lines
353 B
Bash
#! /bin/bash
|
|
|
|
_cli_bash_autocomplete() {
|
|
local cur prev opts base
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
return 0
|
|
}
|
|
|
|
complete -F _cli_bash_autocomplete $PROG |