7 lines
151 B
Text
7 lines
151 B
Text
|
local tArgs = {...}
|
||
|
|
||
|
if #tArgs >= 1 then
|
||
|
shell.executeScript(shell.resolve(tArgs[1]))
|
||
|
else
|
||
|
kerneldraw.printAppInfo("script", "No file specified")
|
||
|
end
|