From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 16:43:29 +0000 (-0400) Subject: bash-completion: (fsck) add missing long options X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed442ddba1969ba826a4e07ccebac6e797d54d82;p=thirdparty%2Futil-linux.git bash-completion: (fsck) add missing long options Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/fsck b/bash-completion/fsck index 8e6942c67..cf8756c5b 100644 --- a/bash-completion/fsck +++ b/bash-completion/fsck @@ -27,7 +27,7 @@ _fsck_module() esac case $cur in -*) - OPTS="-p -n -y -c -f -v -b -B -j -l -L" + OPTS="-p -n -y -c -f -v -b -B -j -l -L --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;