summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-11-15 19:00:01 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-11-15 22:54:51 -0500
commit7524c3cf4485bb9afd4ef0bf005a89f0319c19cd (patch)
tree930c9840cab21c917f683b67068d2bafd67c079e /shell-completion
parent952d97ed2b44f58b973a78c87d09b20c36f61460 (diff)
bash-completion: journalctl --file
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/bash/journalctl6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl
index 942a25357..e4b2f4ac8 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 -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'
;;