What is os.execute

os.execute is like io.popen in that it invokes a process. However:

  • It does get the exit code whereas io.popen does not

  • However os.execute doesn’t get the standard output.

Related pages