diff options
author | Joe <rbo@gmx.us> | 2023-12-18 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-18 20:20:20 +0100 |
commit | d73397da87e0d33ca9509e9120e6289d41e95499 (patch) | |
tree | 4a0b9f8e34fefaf9cab50e6f624699aaf2c27e60 /c_exec.go | |
parent | cool ui (diff) | |
download | hardflip-d73397da87e0d33ca9509e9120e6289d41e95499.tar.gz hardflip-d73397da87e0d33ca9509e9120e6289d41e95499.tar.bz2 hardflip-d73397da87e0d33ca9509e9120e6289d41e95499.tar.xz hardflip-d73397da87e0d33ca9509e9120e6289d41e95499.tar.zst hardflip-d73397da87e0d33ca9509e9120e6289d41e95499.zip |
added LICENSE
Diffstat (limited to 'c_exec.go')
-rw-r--r-- | c_exec.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -106,16 +106,16 @@ func c_format_rdp() { func c_format_cmd(id uint64, lhost *HostList) { host := lhost.head - // var cmd_fmt []string + var cmd_fmt []string host = lhost.sel(id) if host == nil { c_die("host id not found", nil) } if host.Type == 0 { - // cmd_fmt = format_ssh(host) + cmd_fmt = c_format_ssh(host) } - // exec_cmd(cmd_fmt) + c_exec_cmd(cmd_fmt) } func c_display_servers(lhost *HostList) { |