Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- bash-completion/blkreset | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 bash-completion/blkreset diff --git a/bash-completion/blkreset b/bash-completion/blkreset new file mode 100755 index 000000000..69c5f63c1 --- /dev/null +++ b/bash-completion/blkreset @@ -0,0 +1,34 @@ +_blkreset_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-z'|'--zone') + COMPREPLY=( $(compgen -W "offset" -- $cur) ) + return 0 + ;; + '-c'|'--count') + COMPREPLY=( $(compgen -W "length" -- $cur) ) + return 0 + ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + case $cur in + -*) + OPTS="--zone --count --version --help" + if [ "$1" = 'blkreport' ]; then + OPTS+=' --verbose' + fi + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + COMPREPLY=( $(compgen -W "$(lsblk -pnro name)" -- $cur) ) + return 0 +} +complete -F _blkreset_module blkreset +complete -F _blkreset_module blkreport -- 2.11.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html