From: Christian Goeschel Ndjomouo Date: Tue, 2 Sep 2025 18:56:01 +0000 (-0400) Subject: bash-completion: (lscpu) add -H/--list-columns options X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c88e22425515bdbaa07c8a963789fc052dbb531f;p=thirdparty%2Futil-linux.git bash-completion: (lscpu) add -H/--list-columns options Signed-off-by: Christian Goeschel Ndjomouo --- 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) )