octacian 9ec3d9e76f OctOS: Add command framework
Documented in commands.md and applications.md.
2017-03-28 16:23:49 -07:00

9 lines
149 B
Lua

local params = ...
local code = (table.concat(params, " "))
local res = run(code)
if not res then
print("Error: Could not run `"..code.."`")
end