diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
commit | 6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch) | |
tree | 0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/brctl | |
parent | Releasing progress-linux version 1:2.11-8~progress7.99u1. (diff) | |
download | bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/brctl')
-rw-r--r-- | completions/brctl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/completions/brctl b/completions/brctl index 14569b6..0394fa5 100644 --- a/completions/brctl +++ b/completions/brctl @@ -1,40 +1,40 @@ # bash completion for brctl -*- shell-script -*- -_brctl() +_comp_cmd_brctl() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return local command=${words[1]} case $cword in 1) - COMPREPLY=($(compgen -W "addbr delbr addif delif setageing + _comp_compgen -- -W "addbr delbr addif delif setageing setbridgeprio setfd sethello setmaxage setpathcost setportprio - show showmacs showstp stp" -- "$cur")) + show showmacs showstp stp" ;; 2) case $command in show) ;; *) - COMPREPLY=($(compgen -W "$($1 show | - awk 'NR>1 {print $1}')" -- "$cur")) + _comp_compgen_split -- "$("$1" show | + _comp_awk 'NR>1 {print $1}')" ;; esac ;; 3) case $command in addif | delif) - _configured_interfaces + _comp_compgen_configured_interfaces ;; stp) - COMPREPLY=($(compgen -W 'on off' -- "$cur")) + _comp_compgen -- -W 'on off' ;; esac ;; esac } && - complete -F _brctl -o default brctl + complete -F _comp_cmd_brctl -o default brctl # ex: filetype=sh |