From 7123cd16a4cb8c25d16d0b366e79598a22fa0dc5 Mon Sep 17 00:00:00 2001 From: Namhyung Kim Date: Sat, 21 Jan 2017 16:38:23 +0900 Subject: [PATCH] bash_completion: journalctl: Complete -t option values The -t or --identifier requires a syslog identifier. (cherry picked from commit 28b6b5de3f6c8943e83afe4e213cdb6a8c7e1a72) --- shell-completion/bash/journalctl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index ded92cb73a..c90a114497 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -82,6 +82,9 @@ _journalctl() { --user-unit) comps=$(journalctl -F '_SYSTEMD_USER_UNIT' 2>/dev/null) ;; + --identifier|-t) + comps=$(journalctl -F 'SYSLOG_IDENTIFIER' 2>/dev/null) + ;; *) return 0 ;; -- 2.9.3