summaryrefslogtreecommitdiff
path: root/completions/iwpriv
diff options
context:
space:
mode:
Diffstat (limited to 'completions/iwpriv')
-rw-r--r--completions/iwpriv14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/iwpriv b/completions/iwpriv
index 83673b4e..4e382463 100644
--- a/completions/iwpriv
+++ b/completions/iwpriv
@@ -7,25 +7,25 @@ _iwpriv()
case $prev in
roam)
- COMPREPLY=( $(compgen -W 'on off' -- "$cur") )
+ COMPREPLY=($(compgen -W 'on off' -- "$cur"))
return
;;
port)
- COMPREPLY=( $(compgen -W 'ad-hoc managed' -- "$cur") )
+ COMPREPLY=($(compgen -W 'ad-hoc managed' -- "$cur"))
return
;;
esac
- if [[ $cword -eq 1 ]]; then
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '--help --version' -- "$cur") )
+ if ((cword == 1)); then
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '--help --version' -- "$cur"))
else
_available_interfaces -w
fi
else
- COMPREPLY=( $(compgen -W '--all roam port' -- "$cur") )
+ COMPREPLY=($(compgen -W '--all roam port' -- "$cur"))
fi
} &&
-complete -F _iwpriv iwpriv
+ complete -F _iwpriv iwpriv
# ex: filetype=sh