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



我正在用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

你知道怎么解决这个问题吗?

看起来像os的输出。Execute都是256倍。别问我为什么,一定是bug。

所以我这样做了:

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

它工作,但我想知道是否有其他解决方案。

这适用于Lua 5.1和Lua 5.2

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

相关内容

  • 没有找到相关文章

最新更新