# querybts completion -*- shell-script -*- proc _querybts { local cur prev words cword split _init_completion -s || return match $prev { with -B|--bts setglobal COMPREPLY = ''( $( compgen -W "debian guug kde mandrake help" \ -- "$cur" ) ) return 0 with -u|--ui|--interface setglobal COMPREPLY = ''( $( compgen -W "newt text gnome" -- "$cur" ) ) return 0 } $split && return 0 setglobal COMPREPLY = ''( $( compgen -W '-h --help -v --version -A --archive -B --bts -l --ldap --no-ldap --proxy --http_proxy -s --source -w --web -u --ui --interface \ wnpp boot-floppies kernel bugs.debian.org cdimage.debian.org general installation-reports listarchives lists.debian.org mirrors nm.debian.org press project qa.debian.org release-notes security.debian.org tech-ctte upgrade-reports www.debian.org' \ -- "$cur" ) $( apt-cache pkgnames -- "$cur" 2> /dev/null ) ) } && complete -F _querybts querybts # ex: ts=4 sw=4 et filetype=sh