From: Yu Watanabe Date: Wed, 10 Feb 2021 17:50:22 +0000 (+0900) Subject: bash-completion: coredumpctl: add --json and -n options X-Git-Tag: v248-rc1~164^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e56aa170846f62462ab967bb1bcc4a19cda13619;p=thirdparty%2Fsystemd.git bash-completion: coredumpctl: add --json and -n options --- diff --git a/shell-completion/bash/coredumpctl b/shell-completion/bash/coredumpctl index aef863b0201..5fc11fdbd28 100644 --- a/shell-completion/bash/coredumpctl +++ b/shell-completion/bash/coredumpctl @@ -40,7 +40,7 @@ _coredumpctl() { local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local OPTS='-h --help --version --no-pager --no-legend -o --output -F --field -1 -r --reverse -S --since -U --until -D --directory -q --quiet --debugger - -A --debugger-arguments' + -A --debugger-arguments --json -n' local -A VERBS=( [LIST]='list info' @@ -58,6 +58,8 @@ _coredumpctl() { compopt -o filenames elif __contains_word "$prev" '--field -F'; then comps=$( compgen -W '${__journal_fields[*]}' -- "$cur" ) + elif __contains_word "$prev" '--json'; then + comps=$( compgen -W 'pretty short off' -- "$cur" ) elif [[ $cur = -* ]]; then comps=${OPTS} elif __contains_word "$prev" ${VERBS[*]} &&