bash-completion: journalctl --file

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-11-15 19:00:01 -05:00
parent 952d97ed2b
commit 7524c3cf44
1 changed files with 5 additions and 1 deletions

View File

@ -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 -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'
@ -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'
;;