blob: a0039ee0f834b18cefd4034a448ccd5ffa64854c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#autoload
__get_machines () {
machinectl --full --no-legend --no-pager list | {while read -r a b; do echo $a; done;};
}
local -a _machines
_machines=("${(fo)$(__get_machines)}")
typeset -U _machines
if [[ -n "$_machines" ]]; then
_describe 'machines' _machines
else
_message 'no machines'
fi
|