OC-MultICE/modules/applications/luash-login.lua

20 lines
401 B
Lua

function luash_login(si)
s("lua shell",function()
local np = ""
while np ~= pass do
write("Password: ")
np=readln("*")
end
if _OSVERSION and _BD then
write(_OSVERSION.." on "..nID.." (built at ".._BD..")\t")
end
print(tostring(computer.freeMemory()/1024).."K free.",_G.motd)
print(_VERSION)
while true do
write("> ")
print(pcall(load(readln())))
end
end,si)
end
luash = luash_login