summaryrefslogtreecommitdiff
path: root/completions/brctl
diff options
context:
space:
mode:
Diffstat (limited to 'completions/brctl')
-rw-r--r--completions/brctl10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/brctl b/completions/brctl
index 01370654..755812d3 100644
--- a/completions/brctl
+++ b/completions/brctl
@@ -9,17 +9,17 @@ _brctl()
case $cword in
1)
- COMPREPLY=( $( compgen -W "addbr delbr addif delif setageing
+ COMPREPLY=( $(compgen -W "addbr delbr addif delif setageing
setbridgeprio setfd sethello setmaxage setpathcost setportprio
- show showmacs showstp stp" -- "$cur" ) )
+ show showmacs showstp stp" -- "$cur") )
;;
2)
case $command in
show)
;;
*)
- COMPREPLY=( $( compgen -W "$($1 show | \
- awk 'NR>1 {print $1}' )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 show | \
+ awk 'NR>1 {print $1}' )" -- "$cur") )
esac
;;
3)
@@ -28,7 +28,7 @@ _brctl()
_configured_interfaces
;;
stp)
- COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'on off' -- "$cur") )
;;
esac
;;