Files
skynet/console.lua
2012-08-05 18:05:17 +08:00

15 lines
291 B
Lua

local skynet = require "skynet"
skynet.callback(function()
local cmd = io.read()
local handle = skynet.command("LAUNCH",cmd)
if handle == nil then
print("Launch error:",cmd)
else
print("Lauch:",handle)
end
skynet.command("TIMEOUT", 0, "0")
end)
skynet.command("TIMEOUT", 0 ,"0")