diff options
author | Sami Kerola | 2017-06-25 14:21:31 +0200 |
---|---|---|
committer | Sami Kerola | 2017-08-30 21:32:49 +0200 |
commit | 9bf5e08fd359566d556dcbbb4ad1e5dcad5ac548 (patch) | |
tree | 7968d1882d347c6c1f4cdb2b02ff24ddb4bd9713 /bash-completion | |
parent | rfkill: inform in syslog when rfkill is invoked (diff) | |
download | kernel-qcow2-util-linux-9bf5e08fd359566d556dcbbb4ad1e5dcad5ac548.tar.gz kernel-qcow2-util-linux-9bf5e08fd359566d556dcbbb4ad1e5dcad5ac548.tar.xz kernel-qcow2-util-linux-9bf5e08fd359566d556dcbbb4ad1e5dcad5ac548.zip |
rfkill: add bash-completion file
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/Makemodule.am | 3 | ||||
-rw-r--r-- | bash-completion/rfkill | 47 |
2 files changed, 50 insertions, 0 deletions
diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index a4cd4fc36..61f298a72 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 000000000..2d561e955 --- /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 |