1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# Debian GNU/Linux cowbuilder(1) completion
# Copyright 2007 Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
# Copyright 2011 David Paleino <dapal@debian.org>
#
# This script can be distributed under the same license as the
# cowdancer or bash packages.
have cowbuilder &&
_cowbuilder()
{
local initialcommand initialcommand_options cur prev words other_options distribution
COMPREPLY=()
_get_comp_words_by_ref cur prev words
initialcommand=${words[1]}
initialcommand_options='--create --update --build --login --execute'
other_options='--dumpconfig --distribution --mirror --basepath --architecture'
distribution='sid sarge etch woody lenny squeeze'
case $prev in
--distribution)
COMPREPLY=( $(compgen -W "$distribution" | grep "^$cur" ) )
return 0
;;
--basepath)
_filedir -d
return 0
;;
*)
;;
esac
case $initialcommand in
--build)
COMPREPLY=( $( compgen -W "$other_options" -- "$cur" )
$( compgen -o filenames -G "$cur*.dsc" ) )
;;
--execute)
COMPREPLY=( $( compgen -W "$other_options" -- "$cur" )
$( compgen -o filenames -G "$cur*" ) )
;;
*)
COMPREPLY=( $( compgen -W "$initialcommand_options $other_options" -- "$cur" ) )
;;
esac
return 0
} &&
complete -F _cowbuilder cowbuilder
|