From: Frantisek Sumsal Date: Sat, 23 Mar 2019 20:51:04 +0000 (+0100) Subject: bash-completion: unify indentation X-Git-Tag: v242-rc1~71^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c01dbf6d19e44fd3bb8e9afa613d66475ed7a143;p=thirdparty%2Fsystemd.git bash-completion: unify indentation --- diff --git a/shell-completion/bash/journalctl b/shell-completion/bash/journalctl index cdb1fc7cb4f..3beb347e1b7 100644 --- a/shell-completion/bash/journalctl +++ b/shell-completion/bash/journalctl @@ -28,7 +28,7 @@ __contains_word () { __get_machines() { local a b (machinectl list-images --no-legend --no-pager; machinectl list --no-legend --no-pager; echo ".host") | \ - { while read a b; do echo " $a"; done; } | sort -u; + { while read a b; do echo " $a"; done; } | sort -u; } __syslog_priorities=(emerg alert crit err warning notice info debug) @@ -77,7 +77,7 @@ _journalctl() { ;; --field|-F) comps=$(journalctl --fields | sort 2>/dev/null) - ;; + ;; --machine|-M) comps=$( __get_machines ) ;;