summaryrefslogtreecommitdiffstats
path: root/shell-completion/bash/systemd-cat
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-12-21 22:07:05 +0100
committerArthur Zamarin <arthurzam@gentoo.org>2023-12-21 22:07:05 +0100
commitfabe596e7e4d373a2cf8984ba2bed1deedb80d15 (patch)
tree64d788e9750dd013131d3761bce6f943519ae63a /shell-completion/bash/systemd-cat
parentMerge pull request #30568 from poettering/creds-varlink (diff)
downloadsystemd-fabe596e7e4d373a2cf8984ba2bed1deedb80d15.tar.xz
systemd-fabe596e7e4d373a2cf8984ba2bed1deedb80d15.zip
bash-completion: add missing option to systemd-cat
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to '')
-rw-r--r--shell-completion/bash/systemd-cat4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/systemd-cat b/shell-completion/bash/systemd-cat
index b209140804..e1e6002172 100644
--- a/shell-completion/bash/systemd-cat
+++ b/shell-completion/bash/systemd-cat
@@ -30,7 +30,7 @@ _systemd_cat() {
local -A OPTS=(
[STANDALONE]='-h --help --version'
- [ARG]='-t --identifier -p --priority --level-prefix'
+ [ARG]='-t --identifier -p --priority --stderr-priority --level-prefix'
)
_init_completion || return
@@ -40,7 +40,7 @@ _systemd_cat() {
--identifier|-t)
comps=''
;;
- --priority|-p)
+ --priority|-p|--stderr-priority)
comps='emerg alert crit err warning notice info debug'
;;
--level-prefix)