aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemd_machines.fish
blob: 40f833ad3078aaaac9bc90ef33d8de9170c4aacd (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 | while read -l a b; echo $a; end
end