linuxOS_AP05/debian/test/usr/share/bash-completion/completions/debconf

13 lines
294 B
Plaintext
Raw Permalink Normal View History

2025-09-26 01:40:02 +00:00
_have debconf-show &&
_debconf_show()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=($( compgen -W '--listowners --listdbs --db=' -- $cur ) \
$( apt-cache pkgnames -- $cur ) )
}
complete -F _debconf_show debconf-show