39 lines
929 B
Plaintext
Raw Normal View History

2009-09-20 22:12:01 +02:00
# bash completion for rfkill
have rfkill || return
2009-09-20 22:12:01 +02:00
_rfkill()
{
2009-10-04 19:42:50 +02:00
local cur prev
2009-09-20 22:12:01 +02:00
2009-10-04 19:42:50 +02:00
COMPREPLY=()
_get_comp_words_by_ref cur prev
2009-10-04 19:42:50 +02:00
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--version' -- "$cur" ) )
else
case $COMP_CWORD in
1)
COMPREPLY=( $( compgen -W "help event list block unblock" \
-- "$cur" ) )
;;
2)
if [[ $prev == block || $prev == unblock ]]; then
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W "$(rfkill list | awk -F: \
'/^[0-9]/ {print $1}') all wifi bluetooth uwb wimax \
wwan gps" -- "$cur" ) )
fi
;;
esac
fi
2009-09-20 22:12:01 +02:00
} &&
complete -F _rfkill rfkill
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh