Posted 17 May 2014 - 04:18 PM
lets say I have a program that needs command arguments. It's saved as "program" (yes I know thats a lame name)
local prg = fs.open("program", "r")
local stuff = loadstring(prg.readAll())
stuff()
how could I pass the command arguments to a program loaded this way? Or is it impossible?