bash-completion: -p option for journalctl

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-07-19 19:46:04 -04:00
parent e9b11a8457
commit be8f4a9fa7

View file

@ -35,6 +35,8 @@ __journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC}
_UDEV_{SYSNAME,DEVNODE,DEVLINK} _UDEV_{SYSNAME,DEVNODE,DEVLINK}
__CURSOR __{REALTIME,MONOTONIC}_TIMESTAMP) __CURSOR __{REALTIME,MONOTONIC}_TIMESTAMP)
__syslog_priorities=(emerg alert crit err warning notice info debug)
_journalctl() { _journalctl() {
local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local -A OPTS=( local -A OPTS=(
@ -44,8 +46,8 @@ _journalctl() {
--no-tail -q --quiet --setup-keys --this-boot --verify --no-tail -q --quiet --setup-keys --this-boot --verify
--version --list-catalog --update-catalog --list-boots' --version --list-catalog --update-catalog --list-boots'
[ARG]='-b --boot --this-boot -D --directory --file -F --field [ARG]='-b --boot --this-boot -D --directory --file -F --field
-o --output -u --unit --user-unit' -o --output -u --unit --user-unit -p --priority'
[ARGUNKNOWN]='-c --cursor --interval -n --lines -p --priority --since --until [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until
--verify-key' --verify-key'
) )
@ -68,6 +70,9 @@ _journalctl() {
--field|-F) --field|-F)
comps=${__journal_fields[*]} comps=${__journal_fields[*]}
;; ;;
--priority|-p)
comps=${__syslog_priorities[*]}
;;
--unit|-u) --unit|-u)
comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null) comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null)
;; ;;