OC-MultICE/modules/util/autoexec.lua

8 lines
102 B
Lua
Raw Normal View History

do
local f=io.open("/boot/autoexec.lua")
if f then
pcall(load(f:read("*a")))
f:close()
end
end