summaryrefslogtreecommitdiff
path: root/completions/iwconfig
diff options
context:
space:
mode:
Diffstat (limited to 'completions/iwconfig')
-rw-r--r--completions/iwconfig26
1 files changed, 13 insertions, 13 deletions
diff --git a/completions/iwconfig b/completions/iwconfig
index 36213d2c..114081dd 100644
--- a/completions/iwconfig
+++ b/completions/iwconfig
@@ -9,7 +9,7 @@ _iwconfig()
mode)
COMPREPLY=( $( compgen -W 'managed ad-hoc master repeater secondary
monitor' -- "$cur" ) )
- return 0
+ return
;;
essid)
COMPREPLY=( $( compgen -W 'on off any' -- "$cur" ) )
@@ -18,22 +18,22 @@ _iwconfig()
"$( iwlist ${words[1]} scan | \
awk -F'\"' '/ESSID/ {print $2}' )" -- "$cur" ) )
fi
- return 0
+ return
;;
nwid)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
- return 0
+ return
;;
channel)
COMPREPLY=( $( compgen -W "$( iwlist ${words[1]} channel | \
awk '/^[ \t]*Channel/ {print $2}' )" -- "$cur" ) )
- return 0
+ return
;;
freq)
COMPREPLY=( $( compgen -W "$( iwlist ${words[1]} channel | \
awk '/^[ \t]*Channel/ {print $4"G"}')" -- "$cur" ) )
- return 0
+ return
;;
ap)
COMPREPLY=( $( compgen -W 'on off any' -- "$cur" ) )
@@ -42,34 +42,34 @@ _iwconfig()
"$( iwlist ${words[1]} scan | \
awk -F ': ' '/Address/ {print $2}' )" -- "$cur" ) )
fi
- return 0
+ return
;;
rate)
COMPREPLY=( $( compgen -W 'auto fixed' -- "$cur" ) )
COMPREPLY+=( $( compgen -W \
"$( iwlist ${words[1]} rate | \
awk '/^[ \t]*[0-9]/ {print $1"M"}' )" -- "$cur" ) )
- return 0
+ return
;;
rts|frag)
COMPREPLY=( $( compgen -W 'auto fixed off' -- "$cur" ) )
- return 0
+ return
;;
key|enc)
COMPREPLY=( $( compgen -W 'off on open restricted' -- "$cur" ) )
- return 0
+ return
;;
power)
COMPREPLY=( $( compgen -W 'period timeout off on' -- "$cur" ) )
- return 0
+ return
;;
txpower)
COMPREPLY=( $( compgen -W 'off on auto' -- "$cur" ) )
- return 0
+ return
;;
retry)
COMPREPLY=( $( compgen -W 'limit lifetime' -- "$cur" ) )
- return 0
+ return
;;
esac
@@ -87,4 +87,4 @@ _iwconfig()
} &&
complete -F _iwconfig iwconfig
-# ex: ts=4 sw=4 et filetype=sh
+# ex: filetype=sh