diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-19 19:46:04 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-19 19:47:10 -0400 |
commit | be8f4a9fa732d61e845e1ab1a62ac3a6b368d3a7 (patch) | |
tree | 7a1337be0cd6a06731aa59c14cd837103057c1ff /shell-completion | |
parent | e9b11a8457293c553296e5d986a0bb7f86f275d5 (diff) | |
download | systemd-be8f4a9fa732d61e845e1ab1a62ac3a6b368d3a7.tar.gz |
bash-completion: -p option for journalctl
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/journalctl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index e4b2f4ac84..14dcd223b3 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) ;; |