From e84a692a4da69caee88d141b45518cfe36dc7bc6 Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 12:44:30 -0400 Subject: [PATCH] bash-completion: (getopt) add missing --unknown Signed-off-by: Christian Goeschel Ndjomouo --- bash-completion/getopt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/bash-completion/getopt b/bash-completion/getopt index 5e3fca61cb..9cd9b7319a 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 ;; -- 2.47.3