From 378c18e5f024ac5a8aef4cb40d7c9aa9633d144c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:30:35 +0200 Subject: Adding upstream version 2.38.1. Signed-off-by: Daniel Baumann --- bash-completion/resizepart | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 bash-completion/resizepart (limited to 'bash-completion/resizepart') diff --git a/bash-completion/resizepart b/bash-completion/resizepart new file mode 100644 index 0000000..63ca533 --- /dev/null +++ b/bash-completion/resizepart @@ -0,0 +1,28 @@ +_resizepart_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + case $COMP_CWORD in + 1) + OPTS="--help --version $(lsblk -pnro name)" + compopt -o bashdefault -o default + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + ;; + 2) + prev="${COMP_WORDS[COMP_CWORD-1]}" + COMPREPLY=( $(compgen -W "$(cat /sys/block/${prev##*/}/*/partition 2>/dev/null)" -- $cur) ) + ;; + 3) + COMPREPLY="length" + ;; + esac + return 0 +} +complete -F _resizepart_module resizepart -- cgit v1.2.3