2011-11-01 22:14:45 +02:00
|
|
|
# iwspy completion -*- shell-script -*-
|
2011-10-15 10:18:43 +03:00
|
|
|
|
|
|
|
_iwspy()
|
|
|
|
{
|
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
2011-11-09 23:28:11 +02:00
|
|
|
if [[ $cword -eq 1 ]]; then
|
2011-10-15 10:18:43 +03:00
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
COMPREPLY=( $( compgen -W '--help --version' -- "$cur" ) )
|
|
|
|
else
|
|
|
|
_available_interfaces -w
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
COMPREPLY=( $( compgen -W 'setthr getthr off' -- "$cur" ) )
|
|
|
|
fi
|
|
|
|
} &&
|
|
|
|
complete -F _iwspy iwspy
|
|
|
|
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|