diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-12-25 19:17:14 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-12-26 01:53:07 +0100 |
commit | b68b76897aca23f613afdc39a760992c711a7671 (patch) | |
tree | 33809f0eeb795ecd4e599c4c3151c2eba6a5da59 /shell-completion | |
parent | 6cebe83cfa656365348ff21f567d133c7e34a71d (diff) | |
download | systemd-b68b76897aca23f613afdc39a760992c711a7671.tar.gz |
Revert "completion: don't offer completions for journalctl -b"
This reverts commit c756a6d57cdb678b702c68913dae3e11ff0427ae.
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/journalctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index 476fe6ba2e..e4b2f4ac84 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -43,7 +43,7 @@ _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 + [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 --verify-key' @@ -51,7 +51,7 @@ _journalctl() { 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) |