diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-09-01 03:20:41 +0900 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-09-01 17:32:14 +0200 |
commit | 6552c29edb1ebf4016be82a37148a583e086d4d4 (patch) | |
tree | dfb1ee8172c423a02c21d37b42d46f524b67e82e /shell-completion | |
parent | f8c2e4b9269a037844c0cbfc051dd38b7bda2ad6 (diff) | |
download | systemd-6552c29edb1ebf4016be82a37148a583e086d4d4.tar.gz |
shell-completion: do not truncate suggestions
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/busctl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/busctl b/shell-completion/bash/busctl index 3be0600b9b..96bf9ae290 100644 --- a/shell-completion/bash/busctl +++ b/shell-completion/bash/busctl @@ -32,7 +32,7 @@ __get_machines() { __get_busnames() { local mode=$1 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; }; } |