OC-MultICE/modules/applications/shutil.lua

13 lines
436 B
Lua

function ps()
for k,v in pairs(tT) do
write("pid: "..tostring(k).."\tname: "..tostring(v[1]).."\tenv={")
for l,w in pairs(v[3]) do write(tostring(l).." = "..tostring(w)..", ") end
print("}")
end
end
function mem()
print("Total:\t"..tostring(computer.totalMemory()/1024).."K")
print("Free:\t"..tostring(computer.freeMemory()/1024).."K")
print("Used:\t"..tostring((computer.totalMemory()-computer.freeMemory())/1024).."K")
end