[systemd-commits] shell-completion/bash

Dave Reisner dreisner at kemper.freedesktop.org
Wed Dec 25 09:59:46 PST 2013


 shell-completion/bash/journalctl |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c756a6d57cdb678b702c68913dae3e11ff0427ae
Author: Dave Reisner <dreisner at archlinux.org>
Date:   Wed Dec 25 12:58:37 2013 -0500

    completion: don't offer completions for journalctl -b
    
    Since this is a shortopt with an optional argument, assume the user
    knows what they're doing. The longopts --boot and --this-boot will
    continue to offer boot IDs as completions.

diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl
index e4b2f4a..476fe6b 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]='-b --boot --this-boot -D --directory --file -F --field
+                       [ARG]='--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|-b)
+                        --boot|--this-boot)
                                 comps=$(journalctl -F '_BOOT_ID' 2>/dev/null)
                         ;;
                         --directory|-D)



More information about the systemd-commits mailing list