mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
|
|
_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
|
|
|
|
|