diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-05 21:33:08 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-05 21:33:08 -0500 |
commit | 86cb0691b71873c6fe30a103dc98153e2d9ab507 (patch) | |
tree | 5f77512f2904dfc792d10280dcad042a59534221 /shell-completion/bash/systemctl | |
parent | ff6c70f18bacad842b88bf2bfb86d6e9841c1a16 (diff) |
shell-completion: busctl
Diffstat (limited to 'shell-completion/bash/systemctl')
-rw-r--r-- | shell-completion/bash/systemctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl index e96b1f2ccc..86ea33c6e2 100644 --- a/shell-completion/bash/systemctl +++ b/shell-completion/bash/systemctl @@ -146,7 +146,7 @@ _systemctl () { [TARGETS]='set-default' ) - for ((i=0; $i <= $COMP_CWORD; i++)); do + for ((i=0; i <= COMP_CWORD; i++)); do if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} && ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then verb=${COMP_WORDS[i]} @@ -154,7 +154,7 @@ _systemctl () { fi done - if [[ -z $verb ]]; then + if [[ -z $verb ]]; then comps="${VERBS[*]}" elif __contains_word "$verb" ${VERBS[ALL_UNITS]}; then |