OC-MultICE/modules/applications/shutil.lua

13 lines
442 B
Lua
Raw Normal View History

function ps()
for k,v in pairs(tT) do
2017-05-15 21:14:44 +10:00
write("pid: "..tostring(k)..", process name: "..tostring(v[1])..", env={")
for l,w in ipairs(v[3]) do write(tostring(l).." = "..tostring(w)..", ") end
print("}")
end
end
function mem()
print("Total: "..tostring(computer.totalMemory()/1024).."K")
print("Free: "..tostring(computer.freeMemory()/1024).."K")
print("Used: "..tostring((computer.totalMemory()-computer.freeMemory())/1024).."K")
end