/usr/share/bash-completion/completions/dcut is in devscripts 2.16.2ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | _dcut()
{
local cur prev options commands
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
options='-c --config -d -h --host -s -m --maintainer -k --keyid
-t -O --output -P --passive -s --simulate -U --upload
-i --input -v --version'
commands='mv rm cancel'
case $prev in
-k | --keyid)
keyid_options=`gpg -K|grep ^sec|cut -d'/' -f2|cut -d' ' -f1`
COMPREPLY=( $( compgen -W "$keyid_options" | grep ^$cur ) )
;;
mv | rm | cancel)
COMPREPLY=( $(
compgen -G "${cur}*.changes"
compgen -G "${cur}*.commands"
) )
;;
-*)
COMPREPLY=( $(
compgen -G "${cur}*.changes"
compgen -G "${cur}*.dsc"
compgen -G "${cur}*.commands"
) )
;;
*)
COMPREPLY=( $(
compgen -G "${cur}*.changes"
compgen -G "${cur}*.dsc"
compgen -G "${cur}*.commands"
compgen -W "$commands" | grep "^$cur"
compgen -W "$options" | grep "^$cur"
) )
;;
esac
return 0
}
complete -F _dcut -o filenames dcut
|