如果从lua

时间:2015-10-16 07:47:14

标签: lua popen winexe

我在lua中运行我的程序并且由lua启动winexe函数,问题是winexe将正确启动但不会退出。 我曾经使用过file:flush(),file:close()和os.exit(),它们都没有用.Blow是我的代码:

local command = "/root/logoff_script";
 local file = io.popen(command,'r');
 file:write("\n");
 file:flush();
 local output = file:read('*all');
 file:close();
你能帮帮我吗?感谢

0 个答案:

没有答案