summaryrefslogtreecommitdiffstats
path: root/completions/brctl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
commitf4acb49ea148cdd899f7f29f1591c7bc853c2135 (patch)
treeb62d60873864065d6428a84a119dd8a3c90f1397 /completions/brctl
parentAdding upstream version 1:2.11. (diff)
downloadbash-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/brctl')
-rw-r--r--completions/brctl20
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