如何使用 Lua 运行可执行文件?

发布于 2024-09-01 07:19:02 字数 65 浏览 8 评论 0原文

我有一个可执行文件想要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

躲猫猫 2024-09-08 07:19:08

对于需要使用 io.popen 的人

local openPop = assert(io.popen('/bin/ls -la', 'r'))
local output = openPop:read('*all')
openPop:close()
print(output) -- > Prints the output of the command.

For someone who need using io.popen

local openPop = assert(io.popen('/bin/ls -la', 'r'))
local output = openPop:read('*all')
openPop:close()
print(output) -- > Prints the output of the command.
唯憾梦倾城 2024-09-08 07:19:07

如果您需要程序的输出,请使用 io。波彭

If you need the output of the program, use io.popen

浊酒尽余欢 2024-09-08 07:19:05

您可以使用 Lua 原生的“执行”命令。

示例:

os.execute("c:\\temp\\program.exe")

来源:Lua 指南 / os.execute

You can use Lua's native 'execute' command.

Example:

os.execute("c:\\temp\\program.exe")

Sources: Lua Guide / os.execute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文