X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fjournalctl;h=14dcd223b377d235bdd0ba7d3579d83b14b8336d;hp=476fe6ba2e0c82f6934fb2ce2ef08722e121a680;hb=e9a19bd882ff8a2c8aef5c63b39525ea231e5fb9;hpb=c756a6d57cdb678b702c68913dae3e11ff0427ae diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index 476fe6ba2..14dcd223b 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -35,6 +35,8 @@ __journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC} _UDEV_{SYSNAME,DEVNODE,DEVLINK} __CURSOR __{REALTIME,MONOTONIC}_TIMESTAMP) +__syslog_priorities=(emerg alert crit err warning notice info debug) + _journalctl() { local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local -A OPTS=( @@ -43,15 +45,15 @@ _journalctl() { -h --help -l --local --new-id128 -m --merge --no-pager --no-tail -q --quiet --setup-keys --this-boot --verify --version --list-catalog --update-catalog --list-boots' - [ARG]='--boot --this-boot -D --directory --file -F --field - -o --output -u --unit --user-unit' - [ARGUNKNOWN]='-c --cursor --interval -n --lines -p --priority --since --until + [ARG]='-b --boot --this-boot -D --directory --file -F --field + -o --output -u --unit --user-unit -p --priority' + [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until --verify-key' ) if __contains_word "$prev" ${OPTS[ARG]} ${OPTS[ARGUNKNOWN]}; then case $prev in - --boot|--this-boot) + --boot|--this-boot|-b) comps=$(journalctl -F '_BOOT_ID' 2>/dev/null) ;; --directory|-D) @@ -68,6 +70,9 @@ _journalctl() { --field|-F) comps=${__journal_fields[*]} ;; + --priority|-p) + comps=${__syslog_priorities[*]} + ;; --unit|-u) comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null) ;;