diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f4acb49ea148cdd899f7f29f1591c7bc853c2135 (patch) | |
tree | b62d60873864065d6428a84a119dd8a3c90f1397 /completions/rmmod | |
parent | Adding upstream version 1:2.11. (diff) | |
download | bash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.tar.xz bash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.zip |
Adding upstream version 1:2.12.0.upstream/1%2.12.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/rmmod')
-rw-r--r-- | completions/rmmod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/rmmod b/completions/rmmod index 7ec29e6..a57a206 100644 --- a/completions/rmmod +++ b/completions/rmmod @@ -1,10 +1,10 @@ # Linux rmmod(8) completion. -*- shell-script -*- # This completes on a list of all currently installed kernel modules. -_rmmod() +_comp_cmd_rmmod() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return case $prev in -h | --help | -V | --version) @@ -13,12 +13,12 @@ _rmmod() esac if [[ $cur == -* ]]; then - COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")) + _comp_compgen_help return fi - _installed_modules "$cur" + _comp_compgen_inserted_kernel_modules } && - complete -F _rmmod rmmod + complete -F _comp_cmd_rmmod rmmod # ex: filetype=sh |