Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7671211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:59:50+00:00 2026-05-31T15:59:50+00:00

I have a LUA CLI which takes in the lua command, Something like this

  • 0

I have a LUA CLI which takes in the lua command,

Something like this
(lua)> #

Now here inorder to execute the lua file I run the command

(lua)> # dofile(“a.lua”)

I want a command which will execute the file and also pass a argument to it.

Now here I want to pass a argument to the “a.lua” file which will take this argument and call one more lua file, and this 2nd lua file is called according to the argument, So, I need to parse this argument.

Please, can somebody tell me about the parsing commands that will be used in a.lua. I mean what are the functions to be used to parse it.

Please, can somebody tell me how to pass a argument to this file “a.lua”.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:59:51+00:00Added an answer on May 31, 2026 at 3:59 pm

    Now here inorder to execute the lua file I run the command

    This is generally not how you execute Lua files. Usually, if you have some Lua script, you execute it with this command: lua a.lua. You don’t type lua and then use the interface there to execute it.

    Using a proper command line to execute the script, you can pass string parameters to the file: lua a.lua someParam "Param with spaces". The a.lua script can then fetch these parameters using the standard Lua ... mechanic:

    local params = {...}
    params[1] -- first parameter, if any.
    params[2] -- second parameter, if any.
    #params   -- number of parameters.
    

    However, if you insist on trying to execute this using your method of invoking the interpreter (with lua) and typing commands into it one by one, then you can do this:

    > GlobalVariable = assert(loadfile(`a.lua`))
    > GlobalVariable(--[[Insert parameters here]])
    

    However, if you don’t want to do it in two steps, with the intermediate global variable, you can do it in one:

    > assert(loadfile(`a.lua`))(--[[Insert parameters here]])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Supposed I have a test.lua file like this: myVar = 5 Food = function()
I have a lua script which is run using the command line interpreter, the
I have a Lua table and an index function like this: curIndex = 0
If I have some lua code like this: doSomething(function() print(Hello!) end) How can I
Currently I have something in lua that is like OOP using tables. TCharacterController =
I have a lua function which takes multiple parameters and returns as many values
I have Lua table, t , which I iterate: for k, v in pairs(t)
Ok, here's a problem I'm having. I have Lua bindings to a rendering engine
I have successfully compiled lua in my mac. It works. It runs. Now, I
I have a C program which uses Lua for scripting. In order to keep

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.