/etc/bash_completion.d/apt-file is in apt-file 2.5.0ubuntu1.
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 | have apt-file &&
_apt_file()
{
local cur prev
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
case "$prev" in
list | show)
COMPREPLY=( $( apt-cache pkgnames $cur 2> /dev/null ) );
return 0
;;
search | find)
_filedir
return 0
;;
esac;
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-c -v -V -a -s -l -F -y -H -N -d \
--cache --verbose --version --architecture \
--sources-list --package-only --fixed-string \
--architecture --cdrom-mount --non-interactive \
--dummy --help' -- $cur ) )
else
COMPREPLY=( $( compgen -W 'update search list find \
show purge' -- $cur ) )
fi
return 0
}
complete -f -F _apt_file apt-file
|