我必须在Lua中使用io.popen
来运行一个带有命令行参数的可执行文件。
如何等待流程在Lua中完成,以便捕获预期的输出?
local command = "C:\Program Files\XYZ.exe /all"
hOutput = io.popen(command)
print(string.format(""%s", hOutput))
假设可执行文件是XYZ.exe,需要使用命令行参数/all
调用。
执行io.popen(command)
后,进程将返回一些需要打印的字符串。
我的代码段:
function capture(cmd, raw)
local f = assert(io.popen(cmd, 'r'))
-- wait(10000);
local s = assert(f:read('*a'))
Print(string.format("String: %s",s ))
f:close()
if raw then return s end
s = string.gsub(s, '^%s+', '')
s = string.gsub(s, '%s+$', '')
s = string.gsub(s, '[\n\r]+', ' ')
return s
end
local command = capture("C:\Tester.exe /all")
我们将不胜感激。
答案 0 :(得分:20)
如果您使用标准Lua,您的代码看起来有点奇怪。我不完全确定有关超时或平台依赖性的io.popen
语义,但以下内容至少在我的机器上有效。
local file = assert(io.popen('/bin/ls -la', 'r'))
local output = file:read('*all')
file:close()
print(output) -- > Prints the output of the command.