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=e4b2f4ac84e82f823f50736196e36f8116dfdb5b;hb=e9a19bd882ff8a2c8aef5c63b39525ea231e5fb9;hpb=7524c3cf4485bb9afd4ef0bf005a89f0319c19cd diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index e4b2f4ac8..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=( @@ -44,8 +46,8 @@ _journalctl() { --no-tail -q --quiet --setup-keys --this-boot --verify --version --list-catalog --update-catalog --list-boots' [ARG]='-b --boot --this-boot -D --directory --file -F --field - -o --output -u --unit --user-unit' - [ARGUNKNOWN]='-c --cursor --interval -n --lines -p --priority --since --until + -o --output -u --unit --user-unit -p --priority' + [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until --verify-key' ) @@ -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) ;;