My question is, how different is shell.run() from os.run() exactly?
Like, couldn't I just do something like this?:
shell.run = function(path, args)
return os.run({}, path, args)
end
Or can I even do something with that (or even coroutines?):
shell.run = function(path, args) local a = loadfile(path) return pcall(a, args) end
Edited by Piorjade, 19 September 2016 - 07:37 AM.












