From c88e22425515bdbaa07c8a963789fc052dbb531f Mon Sep 17 00:00:00 2001 From: Christian Goeschel Ndjomouo Date: Tue, 2 Sep 2025 14:56:01 -0400 Subject: [PATCH] bash-completion: (lscpu) add -H/--list-columns options Signed-off-by: Christian Goeschel Ndjomouo --- bash-completion/lscpu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bash-completion/lscpu b/bash-completion/lscpu index fc55a1922..9cae8953b 100644 --- a/bash-completion/lscpu +++ b/bash-completion/lscpu @@ -22,7 +22,7 @@ _lscpu_module() COMPREPLY=( $(compgen -P "$prefix" -W "$OPTS" -S ',' -- $realcur) ) return 0 ;; - '-h'|'--help'|'-V'|'--version') + '-H'|'-h'|'--help'|'-V'|'--version') return 0 ;; esac @@ -41,6 +41,7 @@ _lscpu_module() --physical --output-all --raw + --list-columns --help --version" COMPREPLY=( $(compgen -W "${OPTS_ALL[*]}" -- $cur) ) -- 2.47.3