X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fjournalctl;h=e4b2f4ac84e82f823f50736196e36f8116dfdb5b;hp=3c40d57a98f9d7d0cd9298e3e07426abbac6a3c0;hb=f89a4474e05307e45992e1f30b6b1b26900d91bd;hpb=a72d698d0d9ff9c158155b44cdc77376df31a317 diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index 3c40d57a9..e4b2f4ac8 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -42,8 +42,8 @@ _journalctl() { --disk-usage -f --follow --header -h --help -l --local --new-id128 -m --merge --no-pager --no-tail -q --quiet --setup-keys --this-boot --verify - --version --list-catalog --update-catalog' - [ARG]='-b --boot --this-boot -D --directory -F --field + --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 --verify-key' @@ -58,6 +58,10 @@ _journalctl() { comps=$(compgen -d -- "$cur") compopt -o filenames ;; + --file) + comps=$(compgen -f -- "$cur") + compopt -o filenames + ;; --output|-o) comps='short short-monotonic verbose export json cat' ;;