1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

shell-completion: do not truncate suggestions

This commit is contained in:
Yu Watanabe 2019-09-01 03:20:41 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent f8c2e4b926
commit 6552c29edb

View File

@ -32,7 +32,7 @@ __get_machines() {
__get_busnames() { __get_busnames() {
local mode=$1 local mode=$1
local a b local a b
busctl $mode list --no-legend --no-pager 2>/dev/null | COLUMNS=65535 busctl $mode list --no-legend --no-pager 2>/dev/null |
{ while read a b; do echo " $a"; done; }; { while read a b; do echo " $a"; done; };
} }