From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 16:44:30 +0000 (-0400) Subject: bash-completion: (getopt) add missing --unknown X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e84a692a4da69caee88d141b45518cfe36dc7bc6;p=thirdparty%2Futil-linux.git bash-completion: (getopt) add missing --unknown Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/getopt b/bash-completion/getopt index 5e3fca61c..9cd9b7319 100644 --- a/bash-completion/getopt +++ b/bash-completion/getopt @@ -27,7 +27,18 @@ _getopt_module() esac case $cur in -*) - OPTS="--alternative --help --longoptions --name --options --quiet --quiet-output --shell --test --unquoted --version" + OPTS="--alternative + --help + --longoptions + --name + --options + --quiet + --quiet-output + --shell + --test + --unknown + --unquoted + --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;