mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-22 01:10:27 -05:00
10 lines
235 B
Text
10 lines
235 B
Text
_icingacli_completion()
|
|
{
|
|
local cur opts
|
|
opts="${COMP_WORDS[*]}"
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
COMPREPLY=($($opts --autocomplete --autoindex $COMP_CWORD < /dev/null))
|
|
return 0
|
|
}
|
|
|
|
complete -F _icingacli_completion icingacli
|