diff options
author | Daniel Mack <github@zonque.org> | 2015-09-25 12:39:40 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-09-25 12:39:40 +0200 |
commit | 54e56acafef1458d7baa08658c6ca06245215488 (patch) | |
tree | a809529a6e759abe73e643403033fa2bd7c521dd | |
parent | eb1d47c06d7d00fb0512279c950311f528ecf5b7 (diff) | |
parent | 6409d3af08f0ce42acbfd7e7978a9bbb3312511e (diff) |
Merge pull request #1380 from evverx/journalctl-bash-completion
Update journalctl bash completion
-rw-r--r-- | shell-completion/bash/journalctl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index 1387524a85..bb2bb25deb 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -27,8 +27,8 @@ __contains_word () { __journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC} ERRNO SYSLOG_{FACILITY,IDENTIFIER,PID} COREDUMP_EXE _{P,U,G}ID _COMM _EXE _CMDLINE - _AUDIT_{SESSION,LOGINUID} - _SYSTEMD_{CGROUP,SESSION,UNIT,OWNER_UID} + _CAP_EFFECTIVE _AUDIT_{SESSION,LOGINUID} + _SYSTEMD_{CGROUP,SESSION,{,USER_}UNIT,OWNER_UID,SLICE} _SELINUX_CONTEXT _SOURCE_REALTIME_TIMESTAMP _{BOOT,MACHINE}_ID _HOSTNAME _TRANSPORT _KERNEL_{DEVICE,SUBSYSTEM} @@ -49,10 +49,11 @@ _journalctl() { --utc -x --catalog --no-full --force --dump-catalog --flush' [ARG]='-b --boot --this-boot -D --directory --file -F --field - -o --output -u --unit --user-unit -p --priority' + -o --output -u --unit --user-unit -p --priority + --vacuum-size --vacuum-time' [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until - --after-cursor --verify-key --identifier - --root --machine' + --after-cursor --verify-key -t --identifier + --root -M --machine' ) if __contains_word "$prev" ${OPTS[ARG]} ${OPTS[ARGUNKNOWN]}; then |