From 0a2d92427802b36f5e524a0fa8c7723e459f618f Mon Sep 17 00:00:00 2001 From: OleHolmNielsen Date: Tue, 23 Dec 2025 18:52:55 +0100 Subject: [PATCH 1/2] Added no-arg options -b and -B to bash_completion.d/clush --- bash_completion.d/clush | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_completion.d/clush b/bash_completion.d/clush index a465f275..b2a71242 100644 --- a/bash_completion.d/clush +++ b/bash_completion.d/clush @@ -64,6 +64,7 @@ _clush() -w|-g|--group) target_set=1; skip=any;; # no-arg options --version|-h|--help|-n|--nostdin|-a|--all|-q|--quiet|\ + -b|-B|\ -v|--verbose|-d|--debug) ;; # get source separately... --groupsource=*) groupsource="${word#*=}";; From fbd39576251c216d65fb8c969a1c45e79e02092e Mon Sep 17 00:00:00 2001 From: OleHolmNielsen Date: Tue, 23 Dec 2025 20:05:43 +0100 Subject: [PATCH 2/2] Try joining two lines --- bash_completion.d/clush | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bash_completion.d/clush b/bash_completion.d/clush index b2a71242..88b2d861 100644 --- a/bash_completion.d/clush +++ b/bash_completion.d/clush @@ -64,8 +64,7 @@ _clush() -w|-g|--group) target_set=1; skip=any;; # no-arg options --version|-h|--help|-n|--nostdin|-a|--all|-q|--quiet|\ - -b|-B|\ - -v|--verbose|-d|--debug) ;; + -b|-B|-v|--verbose|-d|--debug) ;; # get source separately... --groupsource=*) groupsource="${word#*=}";; -s|--groupsource) skip=groupsource;;