fixed cd() a little

This commit is contained in:
Izaya 2017-07-31 23:23:57 +10:00
parent 26d76abfa7
commit 4165f49396
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
function luash(si)
spawn("lua shell",function()
function cd(p)
os.setenv("PWD",fs.simplify((os.getenv("PWD") or "")..p))
os.setenv("PWD",fs.simplify((os.getenv("PWD") or "").."/"..p))
end
coroutine.yield()
print(_OSVERSION..", "..string.format("%4d",computer.totalMemory()/1024).."K memory, "..string.format("%4d",computer.freeMemory()/1024).."K free")