OC-PsychOS/modules/lib/shutil.lua

25 lines
580 B
Lua
Raw Normal View History

cd=fs.cd
rm=fs.rm
mkdir=fs.mkdir
2017-08-01 15:49:39 +10:00
function ls(p)
for k,v in ipairs(fs.list(p)) do print(v) end
end
2017-08-01 16:56:33 +10:00
function cat(p)
local f=io.open(p)
print(f:read("*a"))
f:close()
end
function ps(f)
local f=f or ""
for k,v in ipairs(os.tasks()) do
if v:find(f) then
print(tostring(k).."\t"..tostring(v))
end
end
end
function mem()
print("Total:\t"..tostring(math.floor(computer.totalMemory()/1024)).."K")
print("Free: \t"..tostring(math.floor(computer.freeMemory()/1024)).."K")
print("Used: \t"..tostring(math.floor((computer.totalMemory()-computer.freeMemory())/1024)).."K")
end