当前位置:  开发笔记 > 编程语言 > 正文

在Lua中获取os.execute的输出

如何解决《在Lua中获取os.execute的输出》经验,为你挑选了2个好方法。

当我在Lua中执行"os.execute"时,控制台会快速弹出,执行命令,然后关闭.但是有没有办法只使用标准的Lua库来取回控制台输出?



1> Norman Ramse..:

如果您有io.popen,那么这就是我使用的:

function os.capture(cmd, raw)
  local f = assert(io.popen(cmd, 'r'))
  local s = assert(f:read('*a'))
  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

如果您没有io.popen,那么您的系统上可能没有popen(3),而且您正在使用深酸奶.但是所有unix/mac/windows Lua端口都有io.popen.



2> 小智..:

我想你想要这个http://pgl.yoyo.org/luai/i/io.popen io.popen.但它并不总是编入.

推荐阅读
女女的家_747
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有