mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
13 lines
215 B
Lua
13 lines
215 B
Lua
|
|
local fs = require("fs")
|
||
|
|
local shell = require("shell")
|
||
|
|
local args = {...}
|
||
|
|
|
||
|
|
if #args == 0 then
|
||
|
|
io.stderr:write("usage: mkdir <paths>\n")
|
||
|
|
return
|
||
|
|
end
|
||
|
|
|
||
|
|
for i=1, #args, 1 do
|
||
|
|
fs.makeDir(shell.resolve(args[i]))
|
||
|
|
end
|