/usr/share/bash-completion/completions/cme_multistrap is in libconfig-model-perl 2.082-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 | # cme(1) completion for multistrap model
#
#
# This file is part of Config-Model
#
# This software is Copyright (c) 2014 by Dominique Dumont
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
_cme_multistrap()
{
COMPREPLY=( $( compgen -o filenames -G "$cur*" -W '~~ -' -- $cur ) )
}
|