execute external program in lua without userinput as arguments in lua












1














I want to execute an external program in lua. Usually this can be done with



os.execute("run '"..arg0.."' 'arg1' arg2")


The problem with this approach is if I want to pass user input as string to an external program, user input could be '; evil 'h4ck teh system' ' and the script from above would execute like this:



/bin/bash -c "run ''; evil 'h4ck teh system' '' 'arg1' arg2"


Another problem occurs when I have '$var' as argument and the shell replaces this with its environment variable. In my particular case I have something like [[program 'set title "$My Title$"']] – so nested strings – and program parses "$My Title$" (with escape sequences) differently than '$My Title$' (as it is). Because I want to set the title as it, the best way is to have arguments like this: 'My Title'. But now the command have to be:



os.execute([[run "set title '$My Title$'"]])


But now – as I said – $My will be replaced with an empty string, because the environment does not know any variable named $My and because, I never wanted it to be replaced.



So I am looking for the usual approach with



execv("run", {"set title '"..arg0.."'", arg1, arg2})









share|improve this question



























    1














    I want to execute an external program in lua. Usually this can be done with



    os.execute("run '"..arg0.."' 'arg1' arg2")


    The problem with this approach is if I want to pass user input as string to an external program, user input could be '; evil 'h4ck teh system' ' and the script from above would execute like this:



    /bin/bash -c "run ''; evil 'h4ck teh system' '' 'arg1' arg2"


    Another problem occurs when I have '$var' as argument and the shell replaces this with its environment variable. In my particular case I have something like [[program 'set title "$My Title$"']] – so nested strings – and program parses "$My Title$" (with escape sequences) differently than '$My Title$' (as it is). Because I want to set the title as it, the best way is to have arguments like this: 'My Title'. But now the command have to be:



    os.execute([[run "set title '$My Title$'"]])


    But now – as I said – $My will be replaced with an empty string, because the environment does not know any variable named $My and because, I never wanted it to be replaced.



    So I am looking for the usual approach with



    execv("run", {"set title '"..arg0.."'", arg1, arg2})









    share|improve this question

























      1












      1








      1







      I want to execute an external program in lua. Usually this can be done with



      os.execute("run '"..arg0.."' 'arg1' arg2")


      The problem with this approach is if I want to pass user input as string to an external program, user input could be '; evil 'h4ck teh system' ' and the script from above would execute like this:



      /bin/bash -c "run ''; evil 'h4ck teh system' '' 'arg1' arg2"


      Another problem occurs when I have '$var' as argument and the shell replaces this with its environment variable. In my particular case I have something like [[program 'set title "$My Title$"']] – so nested strings – and program parses "$My Title$" (with escape sequences) differently than '$My Title$' (as it is). Because I want to set the title as it, the best way is to have arguments like this: 'My Title'. But now the command have to be:



      os.execute([[run "set title '$My Title$'"]])


      But now – as I said – $My will be replaced with an empty string, because the environment does not know any variable named $My and because, I never wanted it to be replaced.



      So I am looking for the usual approach with



      execv("run", {"set title '"..arg0.."'", arg1, arg2})









      share|improve this question













      I want to execute an external program in lua. Usually this can be done with



      os.execute("run '"..arg0.."' 'arg1' arg2")


      The problem with this approach is if I want to pass user input as string to an external program, user input could be '; evil 'h4ck teh system' ' and the script from above would execute like this:



      /bin/bash -c "run ''; evil 'h4ck teh system' '' 'arg1' arg2"


      Another problem occurs when I have '$var' as argument and the shell replaces this with its environment variable. In my particular case I have something like [[program 'set title "$My Title$"']] – so nested strings – and program parses "$My Title$" (with escape sequences) differently than '$My Title$' (as it is). Because I want to set the title as it, the best way is to have arguments like this: 'My Title'. But now the command have to be:



      os.execute([[run "set title '$My Title$'"]])


      But now – as I said – $My will be replaced with an empty string, because the environment does not know any variable named $My and because, I never wanted it to be replaced.



      So I am looking for the usual approach with



      execv("run", {"set title '"..arg0.."'", arg1, arg2})






      security lua user-input






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 23:30









      sivizius

      341112




      341112
























          1 Answer
          1






          active

          oldest

          votes


















          2














          local safe_unquoted = "^[-~_/.%w%%+,:@^]*$"
          local function q(text, expand) -- quoting under *nix shells
          -- "expand"
          -- false/nil: $var and `cmd` must NOT be expanded (use single quotes)
          -- true: $var and `cmd` must be expanded (use double quotes)
          if text == "" then
          text = '""'
          elseif not text:match(safe_unquoted) then
          if expand then
          text = '"'..text:gsub('["\]', '\%0')..'"'
          else
          local new_text = {}
          for s in (text.."'"):gmatch"(.-)'" do
          new_text[#new_text + 1] = s:match(safe_unquoted) or "'"..s.."'"
          end
          text = table.concat(new_text, "\'")
          end
          end
          return text
          end

          function execute_commands(...)
          local all_commands = {}
          for k, command in ipairs{...} do
          for j = 1, #command do
          if not command[j]:match"^[-~_%w/%.]+$" then
          command[j] = q(command[j], command.expand)
          end
          end
          all_commands[k] = table.concat(command, " ") -- space is arguments delimiter
          end
          all_commands = table.concat(all_commands, ";") -- semicolon is commands delimiter
          return os.execute("/bin/bash -c "..q(all_commands))
          end


          Usage examples:



          -- Usage example #1:
          execute_commands(
          {"your/program", "arg 1", "$arg2", "arg-3", "~/arg4.txt"},
          {expand=true, "echo", "Your program finished with exit code $?"},
          {"ls", "-l"}
          )
          -- The following command will be executed:
          -- /bin/bash -c 'your/program '''arg 1''' '''$arg2''' arg-3 ~/arg4.txt;echo "Your program finished with exit code $?";ls -l'


          $arg2 will NOT be expanded into value because of single quotes around it, as you required.

          Unfortunately, "Your program finished with exit code $?" will NOT be expanded too (unless you explicitly set expand=true).



          -- Usage example #2:
          execute_commands{"run", "set title '$My Title$'", "arg1", "arg2"}
          -- the generated command is not trivial, but it does exactly what you need :-)
          -- /bin/bash -c 'run '''set title '''''''$My Title$'''''' arg1 arg2'





          share|improve this answer























          • e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
            – sivizius
            Nov 11 at 11:52










          • @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
            – Egor Skriptunoff
            Nov 11 at 12:23










          • just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
            – sivizius
            Nov 11 at 12:25












          • This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
            – sivizius
            Nov 11 at 12:47










          • @sivizius - Can you give an example of "security concerns" with this solution?
            – Egor Skriptunoff
            Nov 12 at 7:21











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244449%2fexecute-external-program-in-lua-without-userinput-as-arguments-in-lua%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          local safe_unquoted = "^[-~_/.%w%%+,:@^]*$"
          local function q(text, expand) -- quoting under *nix shells
          -- "expand"
          -- false/nil: $var and `cmd` must NOT be expanded (use single quotes)
          -- true: $var and `cmd` must be expanded (use double quotes)
          if text == "" then
          text = '""'
          elseif not text:match(safe_unquoted) then
          if expand then
          text = '"'..text:gsub('["\]', '\%0')..'"'
          else
          local new_text = {}
          for s in (text.."'"):gmatch"(.-)'" do
          new_text[#new_text + 1] = s:match(safe_unquoted) or "'"..s.."'"
          end
          text = table.concat(new_text, "\'")
          end
          end
          return text
          end

          function execute_commands(...)
          local all_commands = {}
          for k, command in ipairs{...} do
          for j = 1, #command do
          if not command[j]:match"^[-~_%w/%.]+$" then
          command[j] = q(command[j], command.expand)
          end
          end
          all_commands[k] = table.concat(command, " ") -- space is arguments delimiter
          end
          all_commands = table.concat(all_commands, ";") -- semicolon is commands delimiter
          return os.execute("/bin/bash -c "..q(all_commands))
          end


          Usage examples:



          -- Usage example #1:
          execute_commands(
          {"your/program", "arg 1", "$arg2", "arg-3", "~/arg4.txt"},
          {expand=true, "echo", "Your program finished with exit code $?"},
          {"ls", "-l"}
          )
          -- The following command will be executed:
          -- /bin/bash -c 'your/program '''arg 1''' '''$arg2''' arg-3 ~/arg4.txt;echo "Your program finished with exit code $?";ls -l'


          $arg2 will NOT be expanded into value because of single quotes around it, as you required.

          Unfortunately, "Your program finished with exit code $?" will NOT be expanded too (unless you explicitly set expand=true).



          -- Usage example #2:
          execute_commands{"run", "set title '$My Title$'", "arg1", "arg2"}
          -- the generated command is not trivial, but it does exactly what you need :-)
          -- /bin/bash -c 'run '''set title '''''''$My Title$'''''' arg1 arg2'





          share|improve this answer























          • e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
            – sivizius
            Nov 11 at 11:52










          • @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
            – Egor Skriptunoff
            Nov 11 at 12:23










          • just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
            – sivizius
            Nov 11 at 12:25












          • This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
            – sivizius
            Nov 11 at 12:47










          • @sivizius - Can you give an example of "security concerns" with this solution?
            – Egor Skriptunoff
            Nov 12 at 7:21
















          2














          local safe_unquoted = "^[-~_/.%w%%+,:@^]*$"
          local function q(text, expand) -- quoting under *nix shells
          -- "expand"
          -- false/nil: $var and `cmd` must NOT be expanded (use single quotes)
          -- true: $var and `cmd` must be expanded (use double quotes)
          if text == "" then
          text = '""'
          elseif not text:match(safe_unquoted) then
          if expand then
          text = '"'..text:gsub('["\]', '\%0')..'"'
          else
          local new_text = {}
          for s in (text.."'"):gmatch"(.-)'" do
          new_text[#new_text + 1] = s:match(safe_unquoted) or "'"..s.."'"
          end
          text = table.concat(new_text, "\'")
          end
          end
          return text
          end

          function execute_commands(...)
          local all_commands = {}
          for k, command in ipairs{...} do
          for j = 1, #command do
          if not command[j]:match"^[-~_%w/%.]+$" then
          command[j] = q(command[j], command.expand)
          end
          end
          all_commands[k] = table.concat(command, " ") -- space is arguments delimiter
          end
          all_commands = table.concat(all_commands, ";") -- semicolon is commands delimiter
          return os.execute("/bin/bash -c "..q(all_commands))
          end


          Usage examples:



          -- Usage example #1:
          execute_commands(
          {"your/program", "arg 1", "$arg2", "arg-3", "~/arg4.txt"},
          {expand=true, "echo", "Your program finished with exit code $?"},
          {"ls", "-l"}
          )
          -- The following command will be executed:
          -- /bin/bash -c 'your/program '''arg 1''' '''$arg2''' arg-3 ~/arg4.txt;echo "Your program finished with exit code $?";ls -l'


          $arg2 will NOT be expanded into value because of single quotes around it, as you required.

          Unfortunately, "Your program finished with exit code $?" will NOT be expanded too (unless you explicitly set expand=true).



          -- Usage example #2:
          execute_commands{"run", "set title '$My Title$'", "arg1", "arg2"}
          -- the generated command is not trivial, but it does exactly what you need :-)
          -- /bin/bash -c 'run '''set title '''''''$My Title$'''''' arg1 arg2'





          share|improve this answer























          • e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
            – sivizius
            Nov 11 at 11:52










          • @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
            – Egor Skriptunoff
            Nov 11 at 12:23










          • just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
            – sivizius
            Nov 11 at 12:25












          • This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
            – sivizius
            Nov 11 at 12:47










          • @sivizius - Can you give an example of "security concerns" with this solution?
            – Egor Skriptunoff
            Nov 12 at 7:21














          2












          2








          2






          local safe_unquoted = "^[-~_/.%w%%+,:@^]*$"
          local function q(text, expand) -- quoting under *nix shells
          -- "expand"
          -- false/nil: $var and `cmd` must NOT be expanded (use single quotes)
          -- true: $var and `cmd` must be expanded (use double quotes)
          if text == "" then
          text = '""'
          elseif not text:match(safe_unquoted) then
          if expand then
          text = '"'..text:gsub('["\]', '\%0')..'"'
          else
          local new_text = {}
          for s in (text.."'"):gmatch"(.-)'" do
          new_text[#new_text + 1] = s:match(safe_unquoted) or "'"..s.."'"
          end
          text = table.concat(new_text, "\'")
          end
          end
          return text
          end

          function execute_commands(...)
          local all_commands = {}
          for k, command in ipairs{...} do
          for j = 1, #command do
          if not command[j]:match"^[-~_%w/%.]+$" then
          command[j] = q(command[j], command.expand)
          end
          end
          all_commands[k] = table.concat(command, " ") -- space is arguments delimiter
          end
          all_commands = table.concat(all_commands, ";") -- semicolon is commands delimiter
          return os.execute("/bin/bash -c "..q(all_commands))
          end


          Usage examples:



          -- Usage example #1:
          execute_commands(
          {"your/program", "arg 1", "$arg2", "arg-3", "~/arg4.txt"},
          {expand=true, "echo", "Your program finished with exit code $?"},
          {"ls", "-l"}
          )
          -- The following command will be executed:
          -- /bin/bash -c 'your/program '''arg 1''' '''$arg2''' arg-3 ~/arg4.txt;echo "Your program finished with exit code $?";ls -l'


          $arg2 will NOT be expanded into value because of single quotes around it, as you required.

          Unfortunately, "Your program finished with exit code $?" will NOT be expanded too (unless you explicitly set expand=true).



          -- Usage example #2:
          execute_commands{"run", "set title '$My Title$'", "arg1", "arg2"}
          -- the generated command is not trivial, but it does exactly what you need :-)
          -- /bin/bash -c 'run '''set title '''''''$My Title$'''''' arg1 arg2'





          share|improve this answer














          local safe_unquoted = "^[-~_/.%w%%+,:@^]*$"
          local function q(text, expand) -- quoting under *nix shells
          -- "expand"
          -- false/nil: $var and `cmd` must NOT be expanded (use single quotes)
          -- true: $var and `cmd` must be expanded (use double quotes)
          if text == "" then
          text = '""'
          elseif not text:match(safe_unquoted) then
          if expand then
          text = '"'..text:gsub('["\]', '\%0')..'"'
          else
          local new_text = {}
          for s in (text.."'"):gmatch"(.-)'" do
          new_text[#new_text + 1] = s:match(safe_unquoted) or "'"..s.."'"
          end
          text = table.concat(new_text, "\'")
          end
          end
          return text
          end

          function execute_commands(...)
          local all_commands = {}
          for k, command in ipairs{...} do
          for j = 1, #command do
          if not command[j]:match"^[-~_%w/%.]+$" then
          command[j] = q(command[j], command.expand)
          end
          end
          all_commands[k] = table.concat(command, " ") -- space is arguments delimiter
          end
          all_commands = table.concat(all_commands, ";") -- semicolon is commands delimiter
          return os.execute("/bin/bash -c "..q(all_commands))
          end


          Usage examples:



          -- Usage example #1:
          execute_commands(
          {"your/program", "arg 1", "$arg2", "arg-3", "~/arg4.txt"},
          {expand=true, "echo", "Your program finished with exit code $?"},
          {"ls", "-l"}
          )
          -- The following command will be executed:
          -- /bin/bash -c 'your/program '''arg 1''' '''$arg2''' arg-3 ~/arg4.txt;echo "Your program finished with exit code $?";ls -l'


          $arg2 will NOT be expanded into value because of single quotes around it, as you required.

          Unfortunately, "Your program finished with exit code $?" will NOT be expanded too (unless you explicitly set expand=true).



          -- Usage example #2:
          execute_commands{"run", "set title '$My Title$'", "arg1", "arg2"}
          -- the generated command is not trivial, but it does exactly what you need :-)
          -- /bin/bash -c 'run '''set title '''''''$My Title$'''''' arg1 arg2'






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 11 at 16:51









          sivizius

          341112




          341112










          answered Nov 11 at 7:43









          Egor Skriptunoff

          17.1k12553




          17.1k12553












          • e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
            – sivizius
            Nov 11 at 11:52










          • @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
            – Egor Skriptunoff
            Nov 11 at 12:23










          • just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
            – sivizius
            Nov 11 at 12:25












          • This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
            – sivizius
            Nov 11 at 12:47










          • @sivizius - Can you give an example of "security concerns" with this solution?
            – Egor Skriptunoff
            Nov 12 at 7:21


















          • e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
            – sivizius
            Nov 11 at 11:52










          • @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
            – Egor Skriptunoff
            Nov 11 at 12:23










          • just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
            – sivizius
            Nov 11 at 12:25












          • This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
            – sivizius
            Nov 11 at 12:47










          • @sivizius - Can you give an example of "security concerns" with this solution?
            – Egor Skriptunoff
            Nov 12 at 7:21
















          e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
          – sivizius
          Nov 11 at 11:52




          e.g. execute_commands({"echo", [[set my '$program$'; cd "finished";]]}) will execute /bin/bash 'echo '\''set my '\''\'\'''\''$program$'\''\'\'''\''; cd "finished";'\'''-c which result in this error: set sh: 1: cd: can't cd to finished sh: 1: \: not found; it was never intended to execute cd
          – sivizius
          Nov 11 at 11:52












          @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
          – Egor Skriptunoff
          Nov 11 at 12:23




          @sivizius - How a text appears inserted between /bin/bash and -c ? My code can't produce such output.
          – Egor Skriptunoff
          Nov 11 at 12:23












          just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
          – sivizius
          Nov 11 at 12:25






          just copy-paste fail, the -c is indeed after /bin/bash. and this was with the old version of your code
          – sivizius
          Nov 11 at 12:25














          This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
          – sivizius
          Nov 11 at 12:47




          This solution works, but I do not like it. I am used to have a real argument list. This solution adds some layers just to removed again by bash later. I still have some security concerns with this. But thank you, at least, this helps somehow.
          – sivizius
          Nov 11 at 12:47












          @sivizius - Can you give an example of "security concerns" with this solution?
          – Egor Skriptunoff
          Nov 12 at 7:21




          @sivizius - Can you give an example of "security concerns" with this solution?
          – Egor Skriptunoff
          Nov 12 at 7:21


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244449%2fexecute-external-program-in-lua-without-userinput-as-arguments-in-lua%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Hercules Kyvelos

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud