mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
efb72f1f91
This reverts commit 9c15b5b7a4
.
7 lines
225 B
Fish
7 lines
225 B
Fish
# It seems machinectl will eliminate spaces from machine names so we don't need to handle that
|
|
function __fish_systemd_machines
|
|
machinectl --no-legend --no-pager list --all | while read -l a b
|
|
echo $a
|
|
end
|
|
end
|