使用 Linux 创建命令行命令
我想制作一个可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给定的数字可在
foo.lua
的arg[1]
中获取(作为字符串)。The number given is available (as a string) in
arg[1]
infoo.lua
.