X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fsystemd-analyze;h=6afcd963c33f3cc9598410df8b8c1445a4e646f1;hp=11276ef09cd68b1c75bec21c88702b4191257443;hb=95fe27d9307628a4a593e63794000c09ecb91b95;hpb=bb150966c0687d2fa94da0a36dabba90c1a84b8b diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze index 11276ef09..6afcd963c 100644 --- a/shell-completion/bash/systemd-analyze +++ b/shell-completion/bash/systemd-analyze @@ -19,9 +19,10 @@ # along with systemd; If not, see . __contains_word () { - local word=$1; shift - for w in $*; do [[ $w = $word ]] && return 0; done - return 1 + local w word=$1; shift + for w in "$@"; do + [[ $w = "$word" ]] && return + done } _systemd_analyze() { @@ -30,14 +31,15 @@ _systemd_analyze() { local OPTS='--help --version --system --user --from-pattern --to-pattern --order --require' local -A VERBS=( - [NO_OPTION]='time blame plot' + [STANDALONE]='time blame plot dump' [CRITICAL_CHAIN]='critical-chain' [DOT]='dot' + [LOG_LEVEL]='set-log-level' ) _init_completion || return - 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]} @@ -53,7 +55,7 @@ _systemd_analyze() { if [[ -z $verb ]]; then comps=${VERBS[*]} - elif __contains_word "$verb" ${VERBS[NO_OPTION]}; then + elif __contains_word "$verb" ${VERBS[STANDALONE]}; then if [[ $cur = -* ]]; then comps='--help --version --system --user' fi @@ -67,6 +69,14 @@ _systemd_analyze() { if [[ $cur = -* ]]; then comps='--help --version --system --user --from-pattern --to-pattern --order --require' fi + + elif __contains_word "$verb" ${VERBS[LOG_LEVEL]}; then + if [[ $cur = -* ]]; then + comps='--help --version --system --user' + else + comps='debug info notice warning err crit alert emerg' + fi + fi COMPREPLY=( $(compgen -W '$comps' -- "$cur") )