/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2
completions/querybts
33 строки
1 KB
Ville Skyttä
*: Line continuation, whitespace, and compgen -W ... -- "$cur" quoting cleanups.
18 фев 2013, 01:49
18 фев 2013, 01:49
6185297
Код
Авторство
О чём код?
# querybts completion -*- shell-script -*- _querybts() { local cur prev words cword split _init_completion -s || return case $prev in -B|--bts) COMPREPLY=( $( compgen -W "debian guug kde mandrake help" \ -- "$cur" ) ) return 0 ;; -u|--ui|--interface) COMPREPLY=( $( compgen -W "newt text gnome" -- "$cur" ) ) return 0 ;; esac $split && return 0 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