This file is indexed.

/usr/share/bash-completion/completions/phylip is in phylip 1:3.696+dfsg-5.

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
_phylip()
{
  local cur prev opts
  COMPREPLY=()
  cur="${COMP_WORDS[COMP_CWORD]}"
  prev="${COMP_WORDS[COMP_CWORD-1]}"

  opts=$(ls /usr/lib/phylip/bin)

  case $prev in
      phylip)
          COMPREPLY=( $(compgen -f -W "${opts}" -- "$cur") )
          ;;
  esac
  return 0
}
complete -F _phylip -o default phylip