如何使用 Lua 运行可执行文件?
我有一个可执行文件想要使用 Lua 运行...我该怎么做?
似乎无法在任何地方找到有关此的任何文档。
I have an executable I want to run using Lua ... how do I do this?
Can't seem to find any documentation anywhere about this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
os.execute
。Use
os.execute
.对于需要使用 io.popen 的人
For someone who need using io.popen
如果您需要程序的输出,请使用
io。波彭
If you need the output of the program, use
io.popen
您可以使用 Lua 原生的“执行”命令。
示例:
来源:Lua 指南 / os.execute
You can use Lua's native 'execute' command.
Example:
Sources: Lua Guide / os.execute