/etc/bash_completion.d/dzil is in libdist-zilla-perl 4.300005-1.
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 | # dzil(1) completion
#
_dzil_actions()
{
COMPREPLY=( $( compgen -W 'build clean install new release smoke test help' \
-- $cur ) )
}
_dzil()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
if [[ $COMP_CWORD -eq 1 ]] ; then
_dzil_actions
else
return 0
fi
}
complete -F _dzil dzil
|