使用 Linux 创建命令行命令

发布于 2024-12-20 20:28:32 字数 312 浏览 0 评论 0原文

我想制作一个可以在 Linux 中使用参数运行的 Lua 脚本,例如, lua foo.lua 25 会处理数字 25 并据此给你一个答案,我当前的程序使用 io.read 来询问用户输入一个数字,但我想在运行程序的同时执行此操作。

搜索该主题我确实找到了此页面 http://www.lua.org/ Manual/5.1/manual.html#6 并无法理解它,这是我编写的第一个程序,如果您好奇的话,它是一个快乐的数字查找器,感谢您的帮助。

I would like to make a Lua script that could run with arguments in Linux, for an example, lua foo.lua 25 would process the number 25 and give you an answer based off of that, my current program uses io.read to ask the user to enter a number, but I would like to do that at the same time I run the program.

Searching on the subject I did find this page http://www.lua.org/manual/5.1/manual.html#6 and haven't been able to make sense of it, this is the first program I've written, it's a happy number finder incase you are curious, thanks for the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

舞袖。长 2024-12-27 20:28:32

给定的数字可在 foo.luaarg[1] 中获取(作为字符串)。

The number given is available (as a string) in arg[1] in foo.lua.

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