/etc/bash_completion.d/phoronix-test-suite is in phoronix-test-suite 3.6.1-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 | have phoronix-test-suite &&
_phoronix-test-suite-show()
{
local cur
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=($( compgen -W "$(phoronix-test-suite dump-possible-options)" -- "$cur" ))
}
complete -F _phoronix-test-suite-show phoronix-test-suite
|