style(shell-completion): remove unnecessary backslashes

This commit is contained in:
Eisuke Kawashima
2025-07-14 16:01:38 +09:00
parent 5300aa7a1d
commit 12e64a4848
20 changed files with 74 additions and 74 deletions

View File

@@ -26,8 +26,8 @@ __contains_word() {
__get_machines() {
local a b
{ machinectl list-images --full --no-legend --no-pager 2>/dev/null; machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } | \
{ while read a b; do echo " $a"; done; } | \
{ machinectl list-images --full --no-legend --no-pager 2>/dev/null; machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } |
{ while read a b; do echo " $a"; done; } |
sort -u
}