将os.execute换成popen执行,popen还有返回值.可以封装一个函数
function exec(command)
local res = io.popen(command);
if res then
local ret = res:read("*a");
res:close();
return ret;
else
return -1;
end
end
function main()
res = exec("ls -l")
notifyMessage(res,1000);
end
用了几天了,亲测有效!
不错!