Files
herolib/examples/threefold/holochain/holochain_vms.vsh
2024-12-30 08:39:45 +01:00

14 lines
365 B
GLSL
Executable File

#!/usr/bin/env -S v -n -w -gc none -no-retry-compilation -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.threefold.tfrobot
import freeflowuniverse.herolib.ui.console
console.print_header("Get VM's.")
for vm in tfrobot.vms_get('holotest2')!{
console.print_debug(vm.str())
mut node:=vm.node()!
r:=node.exec(cmd:"ls /")!
println(r)
}