mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
11 lines
235 B
Plaintext
11 lines
235 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
|