From: Sami Kerola Date: Sun, 25 Jun 2017 12:21:31 +0000 (+0100) Subject: rfkill: add bash-completion file X-Git-Tag: v2.31-rc1~98^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9bf5e08fd359566d556dcbbb4ad1e5dcad5ac548;p=thirdparty%2Futil-linux.git rfkill: add bash-completion file Signed-off-by: Sami Kerola --- diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index a4cd4fc366..61f298a721 100644 --- a/bash-completion/Makemodule.am +++ b/bash-completion/Makemodule.am @@ -282,6 +282,9 @@ endif if BUILD_LDATTACH dist_bashcompletion_DATA += bash-completion/ldattach endif +if BUILD_RFKILL +dist_bashcompletion_DATA += bash-completion/rfkill +endif if BUILD_RTCWAKE dist_bashcompletion_DATA += bash-completion/rtcwake endif diff --git a/bash-completion/rfkill b/bash-completion/rfkill new file mode 100644 index 0000000000..2d561e955d --- /dev/null +++ b/bash-completion/rfkill @@ -0,0 +1,47 @@ +_rfkill_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + 'list'|'block'|'unblock') + local targets + targets="$(rfkill --output=id,type --noheadings list)" + COMPREPLY=( $(compgen -W "all $targets" -- $cur) ) + return 0; + ;; + '-o'|'--output') + local prefix realcur OUTPUT + realcur="${cur##*,}" + prefix="${cur%$realcur}" + for WORD in "DEVICE TYPE ID SOFT HARD"; do + if ! [[ $prefix == *"$WORD"* ]]; then + OUTPUT="$WORD ${OUTPUT:-""}" + fi + done + compopt -o nospace + COMPREPLY=( $(compgen -P "$prefix" -W "$OUTPUT" -S ',' -- $realcur) ) + return 0 + ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + OPTS=" + event + list + block + unblock + --json + --noheadings + --output + --raw + --help + --version + " + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + +} +complete -F _rfkill_module rfkill