bash-completion: do not ellipsize machine name

This commit is contained in:
Yu Watanabe
2020-01-10 12:29:02 +09:00
parent a65e34ccb0
commit e2268fa437
12 changed files with 12 additions and 12 deletions

View File

@@ -27,7 +27,7 @@ __contains_word () {
__get_machines() {
local a b
(machinectl list-images --no-legend --no-pager; machinectl list --no-legend --no-pager; echo ".host") | \
(machinectl list-images --full --no-legend --no-pager; machinectl list --full --no-legend --no-pager; echo ".host") | \
{ while read a b; do echo " $a"; done; } | sort -u;
}