如何在lua中获取shell脚本的返回码?

时间:2014-05-23 10:23:44

标签: shell lua exit

我在lua中执行脚本:

os.execute("sh manager/scripts/update_system.sh" .. " " .. f)

我想得到脚本的输出(如果退出状态为7则返回7)。

我试过

local output = os.execute("sh manager/scripts/update_system.sh" .. " " .. f)
print(output)

但它返回一些奇怪的数字,如512

知道如何解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

似乎os.execute的输出都是256倍。不要问我原因,一定是个bug。

所以我这样做了:

local exit = os.execute("sh manager/scripts/update_system.sh" .. " " .. f)
 local value = exit / 256
 print(value)

它有效,但我想知道是否有另一种解决方案。

答案 1 :(得分:1)

这适用于Lua 5.1和Lua 5.2

exit_code = io.popen'your_command \necho _$?':read'*a':match'.*%D(%d+)'+0