added cp and mv to shutil

This commit is contained in:
Izaya 2017-08-31 12:45:59 +10:00
parent fca81639fa
commit 4956591894
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
cd=fs.cd
rm=fs.rm
mkdir=fs.mkdir
cp=fs.cp
mv=fs.mv
function ls(p)
for k,v in ipairs(fs.list(p)) do print(v) end
end