aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemd_machines.fish
blob: 09becb2d38accd5106bf6dda294e51f96aeab68b (plain)
1
2
3
4
# 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