X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fjournalctl;h=14dcd223b377d235bdd0ba7d3579d83b14b8336d;hp=942a25357f82a3cfead9cae681e4bba9e8c068b8;hb=18ead1b00dff180a97507d014325cb46198e6657;hpb=f11880744c27209a42f502c690db86b38d2db14b diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index 942a25357..14dcd223b 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=( @@ -43,9 +45,9 @@ _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 -F --field - -o --output -u --unit --user-unit' - [ARGUNKNOWN]='-c --cursor --interval -n --lines -p --priority --since --until + [ARG]='-b --boot --this-boot -D --directory --file -F --field + -o --output -u --unit --user-unit -p --priority' + [ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until --verify-key' ) @@ -58,12 +60,19 @@ _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' ;; --field|-F) comps=${__journal_fields[*]} ;; + --priority|-p) + comps=${__syslog_priorities[*]} + ;; --unit|-u) comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null) ;;