1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-23 21:35:11 +03:00

bash-completion: add missing option to systemd-cat

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin 2023-12-21 23:07:05 +02:00
parent 2c6c2b893b
commit fabe596e7e
No known key found for this signature in database
GPG Key ID: 02A0AF503D120504

View File

@ -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)